MIDI transform dialog.
[ardour.git] / libs / ardour / wscript
index 2b4cf453109b059439c93e28179dbdaaa5d78b5f..748c412312706496996ffe0e3771e6268c94ab0b 100644 (file)
@@ -213,6 +213,7 @@ libardour_sources = [
         'ticker.cc',
         'track.cc',
         'transient_detector.cc',
+        'transform.cc',
         'unknown_processor.cc',
         'user_bundle.cc',
         'utils.cc',
@@ -254,8 +255,9 @@ def configure(conf):
                       atleast_version='0.4.0', mandatory=False)
     autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
     if Options.options.dist_target != 'mingw':
-        autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
-                          atleast_version='0.4.0')
+        if not Options.options.no_lrdf:
+            autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
+                              atleast_version='0.4.0')
         autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
                           atleast_version='0.3.2')
     autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE',