1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-20 11:39:55 +00:00

Add SConstruct top-level include path.

This commit is contained in:
Thomas Harte 2025-02-28 11:30:08 -05:00
parent b1c331a1df
commit d494d1e3ee

View File

@ -140,7 +140,7 @@ SOURCES += glob.glob('../../Storage/Tape/Formats/*.cpp')
SOURCES += glob.glob('../../Storage/Tape/Parsers/*.cpp')
# Add additional compiler flags; c++1z is insurance in case c++17 isn't fully implemented.
env.Append(CCFLAGS = ['--std=c++17', '--std=c++1z', '-Wall', '-O2', '-DNDEBUG'])
env.Append(CCFLAGS = ['--std=c++17', '--std=c++1z', '-Wall', '-O2', '-DNDEBUG', '-I../..'])
# Add additional libraries to link against.
env.Append(LIBS = ['libz', 'pthread'])