summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/wscript b/wscript
index 5bc3829..a36764a 100644
--- a/wscript
+++ b/wscript
@@ -298,8 +298,9 @@ def build(bld):
autowaf.use_lib(bld, obj, 'SERD SORD SRATOM LV2')
# Unit test program
- bpath = os.path.abspath(os.path.join(out, 'test', 'test_plugin.lv2'))
- bpath = bpath.replace('\\', '/')
+ blddir = autowaf.build_dir(APPNAME, 'test')
+ bpath = os.path.abspath(os.path.join(blddir, 'test_plugin.lv2'))
+ bpath = bpath.replace('\\', '/')
obj = bld(features = 'c cprogram',
source = 'test/lilv_test.c',
includes = ['.', './src'],