Merge commit 'origin/master' into glsl-pp-rework-2
[mesa.git] / src / glsl / apps / SConscript
1 Import('*')
2
3 if env['platform'] not in ['windows']:
4 Return()
5
6 env = env.Clone()
7
8 if env['platform'] == 'windows':
9 env.PrependUnique(LIBS = [
10 'user32',
11 ])
12
13 env.Prepend(LIBS = [glsl])
14
15 env.Program(
16 target = 'purify',
17 source = ['purify.c'],
18 )
19
20 env.Program(
21 target = 'tokenise',
22 source = ['tokenise.c'],
23 )
24
25 env.Program(
26 target = 'version',
27 source = ['version.c'],
28 )
29
30 env.Program(
31 target = 'process',
32 source = ['process.c'],
33 )