vpglsl: add missing SConscript
authorKeith Whitwell <keithw@vmware.com>
Mon, 23 Mar 2009 19:01:40 +0000 (19:01 +0000)
committerKeith Whitwell <keithw@vmware.com>
Mon, 23 Mar 2009 19:01:40 +0000 (19:01 +0000)
progs/vpglsl/SConscript [new file with mode: 0644]

diff --git a/progs/vpglsl/SConscript b/progs/vpglsl/SConscript
new file mode 100644 (file)
index 0000000..640c5dd
--- /dev/null
@@ -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'],
+    )