disable the console again on release builds

This commit is contained in:
radius 2016-08-13 20:13:40 -05:00
parent 563af1ea68
commit 0a382f43bc
1 changed files with 3 additions and 0 deletions

View File

@ -55,6 +55,9 @@ ifeq ($(DEBUG), 1)
OPTIMIZE_FLAG = -O0 -g
else
OPTIMIZE_FLAG = -O3 -ffast-math
ifneq ($(findstring Win32,$(OS)),)
LDFLAGS += -mwindows
endif
endif
CFLAGS += -Wall $(OPTIMIZE_FLAG) $(INCLUDE_DIRS) $(DEBUG_FLAG) -I.