9 lines
156 B
Python
9 lines
156 B
Python
# vim:filetype=python
|
|
|
|
env = Environment(LIBS = ['GL'])
|
|
env.ParseConfig('sdl-config --cflags --libs')
|
|
|
|
sources = Glob('*.cc')
|
|
|
|
env.Program('test', sources)
|