7 lines
174 B
Python
7 lines
174 B
Python
|
|
||
|
project='PROJECTNAME'
|
||
|
|
||
|
env = Environment(CCFLAGS=['-std=c++20', '-Wall', '-O0', '-g3'])
|
||
|
env.ParseConfig('sdl2-config --static-libs')
|
||
|
env.Program(project, Glob('src/*.cpp'))
|