From 2979d19621b01076b1d4cbabc127ce42bce7eb24 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 12 Nov 2017 16:46:10 -0500 Subject: [PATCH] Enables all warnings for the SDL build. --- OSBindings/SDL/SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OSBindings/SDL/SConstruct b/OSBindings/SDL/SConstruct index 6c3001bc5..479173615 100644 --- a/OSBindings/SDL/SConstruct +++ b/OSBindings/SDL/SConstruct @@ -69,7 +69,8 @@ SOURCES += glob.glob('../../Storage/Tape/Formats/*.cpp') SOURCES += glob.glob('../../Storage/Tape/Parsers/*.cpp') # add additional compiler flags -env.Append(CCFLAGS = ['--std=c++11', '-O3']) +env.Append(CCFLAGS = ['--std=c++11', '-Wall', '-O3']) + # add additional libraries to link against env.Append(LIBS = ['libz', 'pthread', 'GL'])