From 524087805fcf49984cb923d40dfdcf07d8b1a819 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 10 Nov 2017 23:11:40 -0500 Subject: [PATCH] Switches SConstruct build file to producing an optimised result. --- OSBindings/SDL/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OSBindings/SDL/SConstruct b/OSBindings/SDL/SConstruct index cc01c41d4..b0828a1c3 100644 --- a/OSBindings/SDL/SConstruct +++ b/OSBindings/SDL/SConstruct @@ -69,7 +69,7 @@ SOURCES += glob.glob('../../Storage/Tape/Formats/*.cpp') SOURCES += glob.glob('../../Storage/Tape/Parsers/*.cpp') # add additional compiler flags -env.Append(CCFLAGS = ['-g', '--std=c++11']) +env.Append(CCFLAGS = ['-g', '--std=c++11', '-O3']) # add additional libraries to link against env.Append(LIBS = ['libz', 'pthread', 'GL'])