14 lines
182 B
Python
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'],
|
|
)
|