summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2014-04-07 20:50:29 +0300
committerSakari Bergen <sakari.bergen@beatwaves.net>2014-04-07 20:50:29 +0300
commit254923532b5767fdf359db0c3bb464ca36de6a8a (patch)
treeae650bb30729855671d00e2774c18b6f09d6e868
parentfc691cb3ba6c1a49b1b71f1169097bee0292f3cc (diff)
Make tests build again (fix linker issues)
-rw-r--r--libs/ardour/wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index 7031ee6bb0..f65e981b38 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -418,7 +418,7 @@ def build(bld):
testcommon.uselib = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
'SAMPLERATE','XML','LRDF','COREAUDIO','TAGLIB','VAMPSDK','VAMPHOSTSDK','RUBBERBAND']
testcommon.use = ['libpbd','libmidipp','libevoral',
- 'libaudiographer','ardour']
+ 'libaudiographer','libardour']
if bld.is_defined('USE_EXTERNAL_LIBS'):
testcommon.uselib.extend(['LIBLTC',])
else:
@@ -498,7 +498,7 @@ def build(bld):
session_load_tester.includes.append ('test')
session_load_tester.uselib = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
'SAMPLERATE','XML','LRDF','COREAUDIO']
- session_load_tester.use = ['libpbd','libmidipp','ardour']
+ session_load_tester.use = ['libpbd','libmidipp','libardour']
session_load_tester.name = 'libardour-session-load-tester'
session_load_tester.target = 'load-session'
session_load_tester.install_path = ''
@@ -531,7 +531,7 @@ def build(bld):
profilingobj.includes.append ('test')
profilingobj.uselib = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
'SAMPLERATE','XML','LRDF','COREAUDIO']
- profilingobj.use = ['libpbd','libmidipp','ardour']
+ profilingobj.use = ['libpbd','libmidipp','libardour']
profilingobj.name = 'libardour-profiling'
profilingobj.target = p
profilingobj.install_path = ''
@@ -557,7 +557,7 @@ def create_ardour_test_program(bld, includes, name, target, sources):
testobj.uselib = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
'SAMPLERATE','XML','LRDF','COREAUDIO','TAGLIB','VAMPSDK','VAMPHOSTSDK','RUBBERBAND']
testobj.use = ['libpbd','libmidipp','libevoral',
- 'libaudiographer','ardour','testcommon']
+ 'libaudiographer','libardour','testcommon']
if bld.is_defined('USE_EXTERNAL_LIBS'):
testobj.uselib.extend(['LIBLTC'])
else: