From 9e87c15367d03749299e5297470fd10306bdf2b9 Mon Sep 17 00:00:00 2001 From: Thraix Date: Sun, 10 Jun 2018 15:06:18 +0200 Subject: [PATCH] Update version number and Makefile --- Makefile | 5 +++-- src/Common.h | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8928273..333b8c7 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# This Makefile was generated using MakeGen v1.0.2 made by Tim HÃ¥kansson +# This Makefile was generated using MakeGen v1.0.3 made by Tim HÃ¥kansson # and is licensed under MIT. Full source of the project can be found at # https://github.com/Thraix/MakeGen CC=@g++ @@ -8,7 +8,8 @@ OBJPATH=$(BIN)intermediates INCLUDES= OBJECTS=$(OBJPATH)/ConfigFile.o $(OBJPATH)/IncludeDeps.o $(OBJPATH)/Makefile.o $(OBJPATH)/main.o CFLAGS=$(INCLUDES) -std=c++17 -c -w -g3 -D_DEBUG -LIBS= +LIBDIR= +LIBS=$(LIBDIR) OUTPUT=$(BIN)makegen all: $(OUTPUT) rebuild: clean all diff --git a/src/Common.h b/src/Common.h index b50d283..a4207f3 100644 --- a/src/Common.h +++ b/src/Common.h @@ -9,7 +9,7 @@ #define VERSION_MAJOR 1 #define VERSION_UPDATE 0 -#define VERSION_MINOR 2 +#define VERSION_MINOR 3 #define VERSION ("v" STR(VERSION_MAJOR) "." STR(VERSION_UPDATE) "." STR(VERSION_MINOR)) const static unsigned int FLAG_HELP = BIT(0);