projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0d5e6a
)
vpglsl: add missing SConscript
author
Keith Whitwell
<keithw@vmware.com>
Mon, 23 Mar 2009 19:01:40 +0000
(19:01 +0000)
committer
Keith Whitwell
<keithw@vmware.com>
Mon, 23 Mar 2009 19:01:40 +0000
(19:01 +0000)
progs/vpglsl/SConscript
[new file with mode: 0644]
patch
|
blob
diff --git a/progs/vpglsl/SConscript
b/progs/vpglsl/SConscript
new file mode 100644
(file)
index 0000000..
640c5dd
--- /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'],
+ )