summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-12-09 01:37:38 +0000
committerDavid Robillard <d@drobilla.net>2009-12-09 01:37:38 +0000
commit4db8e50ad74080e731dce510ea15bf7fe3994f22 (patch)
tree34695de9875eb2a6a2faef0fbcfd184282d6d8ec /tests
parent3164c2f2a3e5d8fde82427dc5a7e0857e1c8c013 (diff)
downloadraul-4db8e50ad74080e731dce510ea15bf7fe3994f22.tar.gz
raul-4db8e50ad74080e731dce510ea15bf7fe3994f22.tar.bz2
raul-4db8e50ad74080e731dce510ea15bf7fe3994f22.zip
Raul 0.6.0.
Drop glibmm dependency to glib dependency. Add --test configure option. Add RDF description. Bump library version number. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2297 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'tests')
-rw-r--r--tests/wscript15
1 files changed, 8 insertions, 7 deletions
diff --git a/tests/wscript b/tests/wscript
index 3ea7563..1997c1a 100644
--- a/tests/wscript
+++ b/tests/wscript
@@ -14,11 +14,12 @@ def build(bld):
smf_test
table_test
'''
- for i in tests.split():
- obj = bld.new_task_gen('cxx', 'program')
- obj.source = i + '.cpp'
- obj.includes = '..'
- obj.uselib_local = 'libraul'
- obj.target = i
- obj.install_path = ''
+ if bld.env['BUILD_TESTS']:
+ for i in tests.split():
+ obj = bld.new_task_gen('cxx', 'program')
+ obj.source = i + '.cpp'
+ obj.includes = '..'
+ obj.uselib_local = 'libraul'
+ obj.target = i
+ obj.install_path = ''