summaryrefslogtreecommitdiffstats
path: root/test/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'test/wscript')
-rw-r--r--test/wscript14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/wscript b/test/wscript
new file mode 100644
index 0000000..ad4bb8e
--- /dev/null
+++ b/test/wscript
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+
+def build(bld):
+ tests = '''
+ slv2_test
+ '''
+ for i in tests.split():
+ obj = bld.new_task_gen('cc', 'program')
+ obj.source = i + '.c'
+ obj.includes = '..'
+ obj.uselib_local = 'libslv2'
+ obj.target = i
+ obj.install_path = ''
+