diff options
author | David Robillard <d@drobilla.net> | 2010-02-01 22:40:33 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-02-01 22:40:33 +0000 |
commit | fc151dbf05f87d4087836257ff1a738629ab6073 (patch) | |
tree | 92caee8a8eefe28194676376cd40b7395fb20633 /wscript | |
parent | 297eaeeac40089f1b8540a9a0d949bf0ac2f667d (diff) | |
download | raul-fc151dbf05f87d4087836257ff1a738629ab6073.tar.gz raul-fc151dbf05f87d4087836257ff1a738629ab6073.tar.bz2 raul-fc151dbf05f87d4087836257ff1a738629ab6073.zip |
Build unit tests against local library version/headers, even if installed.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2401 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -63,17 +63,18 @@ def configure(conf): print tests = ''' - test/path_test - test/thread_test - test/queue_test - test/ringbuffer_test - test/midi_ringbuffer_test + test/atom_test test/atomic_test test/list_test - test/time_test + test/midi_ringbuffer_test + test/path_test test/quantize_test + test/queue_test + test/ringbuffer_test test/smf_test test/table_test + test/thread_test + test/time_test ''' def build(bld): @@ -121,7 +122,7 @@ def build(bld): for i in tests.split(): obj = bld.new_task_gen('cxx', 'program') obj.source = i + '.cpp' - obj.includes = '..' + obj.includes = ['.', './src'] obj.uselib_local = 'libraul_static' obj.uselib = 'GLIB GLIBMM' obj.libs = 'gcov' |