summaryrefslogtreecommitdiff
path: root/progs/fpglsl/SConscript
blob: e31fa3202383265655904a2c37937bf385860ed1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Import('env')

if not env['GLUT']:
    Return()

env = env.Clone()

env.Prepend(LIBS = ['$GLUT_LIB'])

env.Program(
        target = 'fp-tri',
        source = ['fp-tri.c'],
    )