1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-01 13:58:20 +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')
# 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'])