1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-19 08:31:11 +00:00

Switches SConstruct build file to producing an optimised result.

This commit is contained in:
Thomas Harte 2017-11-10 23:11:40 -05:00
parent 916eb96b47
commit 524087805f

View File

@ -69,7 +69,7 @@ SOURCES += glob.glob('../../Storage/Tape/Formats/*.cpp')
SOURCES += glob.glob('../../Storage/Tape/Parsers/*.cpp') SOURCES += glob.glob('../../Storage/Tape/Parsers/*.cpp')
# add additional compiler flags # 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 # add additional libraries to link against
env.Append(LIBS = ['libz', 'pthread', 'GL']) env.Append(LIBS = ['libz', 'pthread', 'GL'])