diff options
author | José Fonseca <[email protected]> | 2009-06-11 13:19:34 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-06-11 13:19:34 +0100 |
commit | e3f14f2f3bdd66400d02f0f9076593db609874a8 (patch) | |
tree | 32d57f10952a453fcd19ef884d6eb821e1069727 /progs/fp/SConscript | |
parent | 48d816b8fff5d01b8c35bd2f933220e41d976e4c (diff) |
progs: Port fp programs to GLEW.
Diffstat (limited to 'progs/fp/SConscript')
-rw-r--r-- | progs/fp/SConscript | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/progs/fp/SConscript b/progs/fp/SConscript index 553799758b0..a78318542c1 100644 --- a/progs/fp/SConscript +++ b/progs/fp/SConscript @@ -11,7 +11,20 @@ env.Prepend(CPPPATH = [ env.Prepend(LIBS = ['$GLUT_LIB']) -env.Program( - target = 'fp-tri', - source = ['fp-tri.c'], +progs = [ + 'fp-tri', + 'tri-depth', + 'tri-depth2', + 'tri-depthwrite', + 'tri-depthwrite2', + 'tri-inv', + 'tri-param', + 'tri-tex', + 'point-position', +] + +for prog in progs: + env.Program( + target = prog, + source = [prog + '.c'], ) |