summaryrefslogtreecommitdiff
path: root/progs/vpglsl/SConscript
blob: 640c5dd847069b5940f0f50d5bae74c11bd4c653 (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 = 'vp-tris',
        source = ['vp-tris.c'],
    )