Skip to content

Commit

Permalink
Fix OSX unit-test compile
Browse files Browse the repository at this point in the history
  • Loading branch information
x42 committed Oct 15, 2020
1 parent fe8a05d commit 16d9e72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/ardour/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ def build(bld):

load_save_session.includes = obj.includes
load_save_session.includes.append ('test')
load_save_session.uselib = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD',
load_save_session.uselib = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD', 'OSX',
'SAMPLERATE','XML','LRDF','COREAUDIO', 'FFTW3F']
load_save_session.use = ['libpbd','libmidipp','libardour']
load_save_session.name = 'libardour-load-save-session'
Expand Down Expand Up @@ -658,7 +658,7 @@ def create_ardour_test_program(bld, includes, name, target, sources):
testobj = bld(features = 'cxx cxxprogram')
testobj.includes = includes + ['test', '../pbd', '..']
testobj.source = sources
testobj.uselib = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD', 'FFTW3F',
testobj.uselib = ['CPPUNIT','SIGCPP','GLIBMM','GTHREAD', 'FFTW3F', 'OSX',
'SAMPLERATE','XML','LRDF','COREAUDIO','TAGLIB','VAMPSDK','VAMPHOSTSDK','RUBBERBAND']
testobj.use = ['libpbd','libmidipp','libevoral',
'libaudiographer','libardour','testcommon']
Expand Down

0 comments on commit 16d9e72

Please sign in to comment.