summaryrefslogtreecommitdiff
path: root/libs/ardour/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-07-29 23:41:41 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-07-29 23:41:41 -0400
commita9691abf3b0eaca5e78bea9e8d1cb7ea700e2e1e (patch)
tree11600389bfcce38204c6d397d6fb1a0562ba600b /libs/ardour/wscript
parentc7b000f401cedb4e05721bd94f5a1622027c2950 (diff)
small steps toward getting this all working - add new JackConnection object to share jack_client_t between AudioBackend and PortEngine
Diffstat (limited to 'libs/ardour/wscript')
-rw-r--r--libs/ardour/wscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index 20908e5260..8eb52436e9 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -434,7 +434,10 @@ def build(bld):
# the JACK audio backend
- obj = bld.shlib (features = 'c cxx cshlib cxxshlib', source='jack_audiobackend.cc')
+ obj = bld.shlib (features = 'c cxx cshlib cxxshlib',
+ source = [ 'jack_connection.cc',
+ 'jack_audiobackend.cc'
+ ])
obj.cxxflags = [ '-fPIC' ]
obj.name = 'jack_audiobackend'
obj.target = 'jack_audiobackend'