blob: 640c5dd847069b5940f0f50d5bae74c11bd4c653 [file] [log] [blame]
Keith Whitwell1a287502009-03-23 19:01:40 +00001Import('env')
2
3if not env['GLUT']:
4 Return()
5
6env = env.Clone()
7
8env.Prepend(LIBS = ['$GLUT_LIB'])
9
10env.Program(
11 target = 'vp-tris',
12 source = ['vp-tris.c'],
13 )