Add support for contourdesign ShuttlePRO v2 and ShuttleXpress

This commit is contained in:
Johannes Mueller
2019-05-18 13:31:24 +02:00
parent 89f39d14f2
commit b8349069f1
14 changed files with 1777 additions and 2 deletions

View File

@@ -49,8 +49,10 @@ def configure(conf):
if conf.is_defined('HAVE_USB'):
children += [ 'push2' ]
children += [ 'contourdesign' ]
else:
print ('You are missing the libusb-1.0 development package needed to compile Push2 support')
print ('You are missing the libusb-1.0 development package needed to compile Push2 and ContourDesign support')
if conf.is_defined('HAVE_HIDAPI') and Options.options.maschine:
children += [ 'maschine2' ]
@@ -96,6 +98,7 @@ def build(bld):
bld.recurse('tranzport')
if bld.is_defined('HAVE_USB'):
bld.recurse('push2')
bld.recurse('contourdesign')
if bld.is_defined('BUILD_MASCHINE'):
bld.recurse('maschine2')