forked from SDL-Hercules-390/hyperion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VERSION.msvc
13 lines (12 loc) · 855 Bytes
/
VERSION.msvc
1
2
3
4
5
6
7
8
9
10
11
12
13
# --------------------------------------------------------------------------
# Add VERSION defines to build flags
# --------------------------------------------------------------------------
#
# PROGRAMMING NOTE: the below $(varname) makefile variables are defined
# (and thus passed to this makefile) by the setting of the corresponding
# environment variable with the same name via the 'makefile.bat' script
# (which gets them from the '_dynamic_version.cmd' script).
#
# --------------------------------------------------------------------------
rcflags = $(rcflags) -D VERSION=\"$(VERSION)\" -D VERS_MAJ=$(VERS_MAJ) -D VERS_INT=$(VERS_INT) -D VERS_MIN=$(VERS_MIN) -D VERS_BLD=$(VERS_BLD)
cflags = $(cflags) -D VERSION=\"$(VERSION)\" -D VERS_MAJ=$(VERS_MAJ) -D VERS_INT=$(VERS_INT) -D VERS_MIN=$(VERS_MIN) -D VERS_BLD=$(VERS_BLD)