Print message when LV2 support is not enabled.
authorDavid Robillard <d@drobilla.net>
Sat, 19 Jan 2008 19:08:42 +0000 (19:08 +0000)
committerDavid Robillard <d@drobilla.net>
Sat, 19 Jan 2008 19:08:42 +0000 (19:08 +0000)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2948 d708f5d6-7413-0410-9779-e7cbd77b26cf

SConstruct

index e12852cd965657870983db1137233e9e9448d7fa..f479d365cf959f254c3c93becf56704a099c6f9c 100644 (file)
@@ -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')