Introducing a special release build target with SVN version stamping.

This commit is contained in:
SpinDizzy 2020-12-24 10:20:26 +00:00
parent 1f50519905
commit 53185c3eff
3 changed files with 23 additions and 8 deletions

View file

@ -106,6 +106,8 @@ PLATFORM_SRC_FILES = \
Src/OSD/Windows/DirectInputSystem.cpp \
Src/OSD/Windows/WinOutputs.cpp
.PHONY: clean
include Makefiles/Rules.inc
clean:

View file

@ -212,6 +212,17 @@ INCLUDE_DIRS = $(sort $(foreach file,$(SRC_FILES),$(dir $(file))))
#
all: $(BIN_DIR)/$(OUTFILE)
#
# Release target: used only to create official builds stamped with the SVN
# version number.
#
release: set_version clean all
set_version:
$(eval VERSION = 0.3a-svn-$(shell svnversion --no-newline))
$(eval SUPERMODEL_BUILD_FLAGS += -DSUPERMODEL_VERSION=\"$(VERSION)\")
$(info Building Supermodel Version $(VERSION))
$(BIN_DIR)/$(OUTFILE): $(BIN_DIR) $(OBJ_DIR) $(OBJ_FILES)
$(info --------------------------------------------------------------------------------)
$(info Linking Supermodel : $(BIN_DIR)/$(OUTFILE))

View file

@ -28,6 +28,8 @@
#ifndef INCLUDED_VERSION_H
#define INCLUDED_VERSION_H
#ifndef SUPERMODEL_VERSION
#define SUPERMODEL_VERSION "0.3a-WIP"
#endif
#endif // INCLUDED_VERSION_H