vpglsl: add missing SConscript

This commit is contained in:
Keith Whitwell 2009-03-23 19:01:40 +00:00
parent d0d5e6a22c
commit 1a28750b43

13
progs/vpglsl/SConscript Normal file
View file

@ -0,0 +1,13 @@
Import('env')
if not env['GLUT']:
Return()
env = env.Clone()
env.Prepend(LIBS = ['$GLUT_LIB'])
env.Program(
target = 'vp-tris',
source = ['vp-tris.c'],
)