mesa/progs/vpglsl/SConscript

14 lines
182 B
Python
Raw Normal View History

2009-03-23 19:01:40 +00:00
Import('env')
if not env['GLUT']:
Return()
env = env.Clone()
env.Prepend(LIBS = ['$GLUT_LIB'])
env.Program(
target = 'vp-tris',
source = ['vp-tris.c'],
)