vpglsl: add missing SConscript

This commit is contained in:
Keith Whitwell 2009-03-23 19:01:40 +00:00
parent d0d5e6a22c
commit 1a28750b43
1 changed files with 13 additions and 0 deletions

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'],
)