14 lines
180 B
Python
14 lines
180 B
Python
Import('env')
|
|
|
|
if not env['GLUT']:
|
|
Return()
|
|
|
|
env = env.Clone()
|
|
|
|
env.Prepend(LIBS = ['$GLUT_LIB'])
|
|
|
|
env.Program(
|
|
target = 'fp-tri',
|
|
source = ['fp-tri.c'],
|
|
)
|