Ignore multichar and int-in-bool-context warnings

This commit is contained in:
Rob Loach 2018-10-13 17:19:05 -04:00
parent 63fd5b4c10
commit 7a6d6c3850
No known key found for this signature in database
GPG Key ID: 627C60834A74A21A
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ endif
# Set compilation and linkage flags based on target, platform and configuration
CFLAGS += -Werror -Wall -std=gnu11 -D_GNU_SOURCE -DVERSION="$(VERSION)" -I. -D_USE_MATH_DEFINES
CFLAGS += -Werror -Wall -Wno-multichar -Wno-int-in-bool-context -std=gnu11 -D_GNU_SOURCE -DVERSION="$(VERSION)" -I. -D_USE_MATH_DEFINES
SDL_LDFLAGS := -lSDL2 -lGL
ifeq ($(PLATFORM),windows32)
CFLAGS += -IWindows