diff options
author | Keith Whitwell <[email protected]> | 2009-03-23 19:01:40 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-03-23 19:01:40 +0000 |
commit | 1a28750b43d3d5190ad88278945dc7b15209dd3f (patch) | |
tree | d2b36ce92e912e12ddce0389370e557f4bd3f02e /progs | |
parent | d0d5e6a22cca4aae487be6828d1dd87621929a7d (diff) |
vpglsl: add missing SConscript
Diffstat (limited to 'progs')
-rw-r--r-- | progs/vpglsl/SConscript | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/progs/vpglsl/SConscript b/progs/vpglsl/SConscript new file mode 100644 index 00000000000..640c5dd8470 --- /dev/null +++ b/progs/vpglsl/SConscript @@ -0,0 +1,13 @@ +Import('env') + +if not env['GLUT']: + Return() + +env = env.Clone() + +env.Prepend(LIBS = ['$GLUT_LIB']) + +env.Program( + target = 'vp-tris', + source = ['vp-tris.c'], + ) |