MIDI transform dialog.
[ardour.git] / libs / ardour / wscript
index bce1b127f49a97e0c15f275b03d94f102aeaa7ed..748c412312706496996ffe0e3771e6268c94ab0b 100644 (file)
@@ -56,7 +56,6 @@ libardour_sources = [
         'capturing_processor.cc',
         'chan_count.cc',
         'chan_mapping.cc',
-        'configuration.cc',
         'config_text.cc',
         'control_protocol_manager.cc',
         'cycle_timer.cc',
@@ -214,6 +213,7 @@ libardour_sources = [
         'ticker.cc',
         'track.cc',
         'transient_detector.cc',
+        'transform.cc',
         'unknown_processor.cc',
         'user_bundle.cc',
         'utils.cc',
@@ -255,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',