From fc151dbf05f87d4087836257ff1a738629ab6073 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 1 Feb 2010 22:40:33 +0000 Subject: 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 --- wscript | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 16d50a6..d062767 100644 --- a/wscript +++ b/wscript @@ -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' -- cgit v1.2.1