1
env = Environment(CCFLAGS = '-ggdb -pipe -Wall -O3 -ffast-math -Wno-unused -fPIC -DPOLYSTYRENE')
2
3
env.Append(CPPPATH = ['source'])
4
env.Append(CPPPATH = ['polystyrene'])
5
6
source = ['polystyrene/polystyrene.cpp',
7
'source/machine.cpp',   
8
'source/thread.cpp']
9
10
env.Program(source = source, target = "poly")