summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-01-19 19:08:42 +0000
committerDavid Robillard <d@drobilla.net>2008-01-19 19:08:42 +0000
commitbe7f3bc4e4479ed80d457692ac899a0eed41bea4 (patch)
treefd3e93d961e78cd1f2a1a4041fc8db8049b16fa3 /SConstruct
parentbacbcee0f5b06fdabd0735effb479410cd2a036f (diff)
Print message when LV2 support is not enabled.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2948 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 3 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index e12852cd96..f479d365cf 100644
--- a/SConstruct
+++ b/SConstruct
@@ -539,7 +539,9 @@ if env['LV2']:
print 'WARNING: SLV2 not found, or too old. Ardour will be built without LV2 support.'
env['LV2'] = 0
conf.Finish()
-
+else:
+ print 'LV2 support is not enabled. Build with \'scons LV2=1\' to enable.'
+
libraries['jack'] = LibraryInfo()
libraries['jack'].ParseConfig('pkg-config --cflags --libs jack')