Files
third_party_mesa3d/progs/vpglsl/SConscript
2009-03-23 19:01:40 +00:00

14 lines
182 B
Python

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