summaryrefslogtreecommitdiff
path: root/libs/ardour/wscript
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2012-10-21 14:07:10 +0000
committerRobin Gareus <robin@gareus.org>2012-10-21 14:07:10 +0000
commitec94210a4d5009bd635b24e7f5af8946f6b7669d (patch)
tree0dc48dfca1a301a7c0a7b6f484ab397ac34c1cff /libs/ardour/wscript
parent4c13d205d4adc5dde130e199ea1f228ce670b588 (diff)
add LTC generator
git-svn-id: svn://localhost/ardour2/branches/3.0@13315 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/wscript')
-rw-r--r--libs/ardour/wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index ddcb5e00e5..f17fe8f7a4 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -282,7 +282,7 @@ def configure(conf):
autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL',
atleast_version='7.0.0')
autowaf.check_pkg(conf, 'ltc', uselib_store='LTC',
- atleast_version='0.3.2', mandatory=False)
+ atleast_version='0.7.0', mandatory=False)
# we don't try to detect this, since its part of our source tree
@@ -385,6 +385,7 @@ def build(bld):
if bld.is_defined('HAVE_LTC') :
obj.source += ['ltc_slave.cc']
+ obj.source += ['session_ltc.cc']
obj.uselib += ['LTC']
if bld.is_defined('HAVE_LILV') :