X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=blobdiff_plain;f=libs%2Fsurfaces%2Fwscript;h=a1a3de56a0a1438d22dbdcaf2b64a9983700c77d;hp=0e34356de15e9723e7242366b0f11bfcf8fdd86b;hb=0a6d1ab06e20de7d1c3da7f7f9df14c633b3d566;hpb=0c2e25a506cf83455744a5aacaa1a3787b00aa04 diff --git a/libs/surfaces/wscript b/libs/surfaces/wscript index 0e34356de1..a1a3de56a0 100644 --- a/libs/surfaces/wscript +++ b/libs/surfaces/wscript @@ -50,6 +50,9 @@ def configure(conf): else: print ('You are missing the libusb-1.0 development package needed to compile Push2 support') + if conf.is_defined('HAVE_HIDAPI'): + children += [ 'maschine2' ] + if autowaf.check_pkg (conf, 'liblo', mandatory=False, uselib_store="LO", atleast_version="0.24"): children += [ 'osc' ] @@ -88,6 +91,8 @@ def build(bld): bld.recurse('tranzport') if bld.is_defined('HAVE_USB'): bld.recurse('push2') + if bld.is_defined('HAVE_HIDAPI'): + bld.recurse('maschine2') def shutdown(): autowaf.shutdown()