blob: fa43d73d96ae6d42d263dc3f0dec3e106304e99a [file] [log] [blame]
Keith Whitwelle95a3a22009-09-17 12:08:04 +01001Import('env')
2
3if not env['GLUT']:
4 Return()
5
6env = env.Clone()
7
8env.Prepend(LIBS = ['$GLUT_LIB'])
9
10progs = [
11 'drawoverhead',
Brian Paul9297e692009-09-21 12:17:49 -060012 'fill',
Keith Whitwelle95a3a22009-09-17 12:08:04 +010013 'teximage',
Keith Whitwella7b26592009-09-21 16:55:12 +010014 'swapbuffers',
Keith Whitwelle95a3a22009-09-17 12:08:04 +010015 'vbo',
16 'vertexrate',
17]
18
19for prog in progs:
20 env.Program(
21 target = prog,
22 source = [
23 prog + '.c',
24 'common.c',
25 'glmain.c',
26 ]
27 )
28