blob: 553799758b0ddb7f70c0e43c6b58fa01fd9982c7 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | Import('env')
if not env['GLUT']:
    Return()
env = env.Clone()
env.Prepend(CPPPATH = [
	'../util',
])
env.Prepend(LIBS = ['$GLUT_LIB'])
env.Program(
        target = 'fp-tri',
        source = ['fp-tri.c'],
    )
 |