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