diff options
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'], ) |