aboutsummaryrefslogtreecommitdiffstats
path: root/progs/fp/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'progs/fp/SConscript')
-rw-r--r--progs/fp/SConscript17
1 files changed, 17 insertions, 0 deletions
diff --git a/progs/fp/SConscript b/progs/fp/SConscript
new file mode 100644
index 00000000000..553799758b0
--- /dev/null
+++ b/progs/fp/SConscript
@@ -0,0 +1,17 @@
+Import('env')
+
+if not env['GLUT']:
+ Return()
+
+env = env.Clone()
+
+env.Prepend(CPPPATH = [
+ '../util',
+])
+
+env.Prepend(LIBS = ['$GLUT_LIB'])
+
+env.Program(
+ target = 'fp-tri',
+ source = ['fp-tri.c'],
+ )