gallium: add target-helpers/wrap_screen.c to C_SOURCES
[mesa/mesa-lb.git] / progs / glsl / SConscript
blob8f2ebcf69c42619ca85f96d5a2533334e784845b
1 Import('*')
3 progs = [
4       'array',
5       'bitmap',
6       'brick',
7       'bump',
8       'convolutions',
9       'deriv',
10       'fragcoord',
11       'identity',
12       'linktest',
13       'mandelbrot',
14       'multinoise',
15       'multitex',
16       'noise',
17       'noise2',
18       'pointcoord',
19       'points',
20       'samplers',
21       'shadow_sampler',
22       'skinning',
23       'texaaline',
24       'texdemo1',
25       'toyball',
26       'trirast',
27       'twoside',
28       'vert-or-frag-only',
29       'vert-tex',
32 for prog in progs:
33     progs_env.Program(
34         target = prog,
35         source = prog + '.c',
36     )
37