2009-02-25 21:48:32 +00:00
|
|
|
#!/usr/bin/env python
|
2011-09-29 19:17:54 +00:00
|
|
|
from waflib.extras import autowaf as autowaf
|
2011-09-29 19:58:05 +00:00
|
|
|
from waflib import Options
|
2009-02-25 21:48:32 +00:00
|
|
|
|
|
|
|
|
# Version of this package (even if built as a child)
|
2009-02-27 00:27:14 +00:00
|
|
|
LIBSURFACES_VERSION = '4.1.0'
|
2009-02-25 21:48:32 +00:00
|
|
|
|
|
|
|
|
# Library version (UNIX style major, minor, micro)
|
|
|
|
|
# major increment <=> incompatible changes
|
|
|
|
|
# minor increment <=> compatible changes (additions)
|
|
|
|
|
# micro increment <=> no interface changes
|
|
|
|
|
LIBSURFACES_LIB_VERSION = '4.1.0'
|
|
|
|
|
|
2009-09-03 00:38:34 +00:00
|
|
|
children = [
|
2022-10-14 13:10:24 -06:00
|
|
|
'faderport',
|
|
|
|
|
'faderport8',
|
|
|
|
|
'cc121',
|
|
|
|
|
'generic_midi',
|
|
|
|
|
'mackie',
|
|
|
|
|
'us2400',
|
|
|
|
|
'launch_control_xl',
|
|
|
|
|
'osc',
|
2025-01-15 16:00:05 +01:00
|
|
|
'console1'
|
2009-09-03 00:38:34 +00:00
|
|
|
]
|
|
|
|
|
|
2011-09-29 19:17:54 +00:00
|
|
|
def options(opt):
|
2022-01-25 17:43:36 +01:00
|
|
|
pass
|
2009-02-25 21:48:32 +00:00
|
|
|
|
|
|
|
|
def configure(conf):
|
2014-01-23 13:39:43 -05:00
|
|
|
global children
|
|
|
|
|
|
2011-04-22 22:15:21 +00:00
|
|
|
autowaf.set_recursive()
|
2015-11-29 17:52:42 +01:00
|
|
|
|
2016-06-15 22:41:01 -04:00
|
|
|
if conf.is_defined('HAVE_USB'):
|
|
|
|
|
children += [ 'push2' ]
|
2019-05-18 13:31:24 +02:00
|
|
|
children += [ 'contourdesign' ]
|
2025-01-15 16:00:05 +01:00
|
|
|
children += [ 'launchpad_pro' ]
|
|
|
|
|
children += [ 'launchpad_x' ]
|
2025-01-15 16:04:49 +01:00
|
|
|
children += [ 'launchkey_4' ]
|
2019-05-18 13:31:24 +02:00
|
|
|
|
2016-06-16 00:07:43 -04:00
|
|
|
else:
|
2019-05-18 13:31:24 +02:00
|
|
|
print ('You are missing the libusb-1.0 development package needed to compile Push2 and ContourDesign support')
|
2018-08-07 03:41:12 +02:00
|
|
|
|
2017-08-17 03:27:47 +02:00
|
|
|
if conf.is_defined('HAVE_HIDAPI') and Options.options.maschine:
|
2016-11-17 13:08:12 +01:00
|
|
|
children += [ 'maschine2' ]
|
2017-08-17 03:27:47 +02:00
|
|
|
conf.define('BUILD_MASCHINE', 1)
|
2016-11-17 13:08:12 +01:00
|
|
|
|
2013-01-07 18:28:09 +00:00
|
|
|
conf.check_cc (header_name='cwiid.h', define_name='HAVE_CWIID_H',mandatory=False)
|
|
|
|
|
if conf.is_defined('HAVE_CWIID_H'):
|
|
|
|
|
conf.check_cc (header_name='bluetooth/bluetooth.h', define_name='HAVE_BLUETOOTH_H',mandatory=False)
|
|
|
|
|
if conf.is_defined('HAVE_BLUETOOTH_H'):
|
2013-09-16 10:07:27 -04:00
|
|
|
autowaf.check_pkg(conf, 'cwiid', uselib_store='CWIID', atleast_version='0.6.00',mandatory=False)
|
|
|
|
|
if conf.is_defined ('HAVE_CWIID'):
|
|
|
|
|
conf.define ('BUILD_WIIMOTE', 1)
|
2014-01-23 13:39:43 -05:00
|
|
|
children += [ 'wiimote' ]
|
2013-09-16 10:07:27 -04:00
|
|
|
else:
|
2013-09-16 10:07:52 -04:00
|
|
|
print('You have the cwiid headers needed to compile wiimote support BUT you are missing the pkg-config file for cwiid')
|
2013-01-07 18:28:09 +00:00
|
|
|
else:
|
|
|
|
|
print('You are missing the libbluetooth headers needed to compile wiimote support')
|
|
|
|
|
else:
|
2022-01-25 00:38:32 +01:00
|
|
|
print('You are missing the cwiid headers needed to compile wiimote support')
|
2009-07-17 22:12:21 +00:00
|
|
|
|
2020-02-20 13:12:36 +01:00
|
|
|
autowaf.check_pkg(conf, 'libwebsockets', uselib_store='WEBSOCKETS', atleast_version='2.0.0', mandatory=False)
|
|
|
|
|
if conf.is_defined('HAVE_WEBSOCKETS'):
|
|
|
|
|
children += [ 'websockets' ]
|
|
|
|
|
|
2014-01-23 13:39:43 -05:00
|
|
|
for i in children:
|
2022-01-27 21:49:21 +01:00
|
|
|
conf.recurse(i)
|
2014-01-23 13:39:43 -05:00
|
|
|
|
2009-02-25 21:48:32 +00:00
|
|
|
def build(bld):
|
2014-01-25 13:57:28 -05:00
|
|
|
bld.recurse('generic_midi')
|
2015-11-24 14:17:25 -06:00
|
|
|
bld.recurse('faderport')
|
2017-04-05 11:04:16 +02:00
|
|
|
bld.recurse('faderport8')
|
2016-10-11 19:21:21 +02:00
|
|
|
bld.recurse('cc121')
|
2014-01-25 13:57:28 -05:00
|
|
|
bld.recurse('mackie')
|
2017-10-05 10:03:09 -05:00
|
|
|
bld.recurse('us2400')
|
2018-08-07 03:41:12 +02:00
|
|
|
bld.recurse('launch_control_xl')
|
2022-04-14 04:47:57 +02:00
|
|
|
bld.recurse('osc')
|
2023-05-07 16:21:37 +02:00
|
|
|
bld.recurse('console1')
|
2023-07-03 10:47:40 -06:00
|
|
|
bld.recurse('launchpad_pro')
|
2023-10-19 22:19:07 -06:00
|
|
|
bld.recurse('launchpad_x')
|
2024-08-29 18:31:00 -06:00
|
|
|
bld.recurse('launchkey_4')
|
2014-01-25 13:57:28 -05:00
|
|
|
|
|
|
|
|
if bld.is_defined('BUILD_WIIMOTE'):
|
|
|
|
|
bld.recurse('wiimote')
|
2016-06-15 22:41:01 -04:00
|
|
|
if bld.is_defined('HAVE_USB'):
|
|
|
|
|
bld.recurse('push2')
|
2019-05-18 13:31:24 +02:00
|
|
|
bld.recurse('contourdesign')
|
2017-08-17 03:27:47 +02:00
|
|
|
if bld.is_defined('BUILD_MASCHINE'):
|
2016-11-17 13:08:12 +01:00
|
|
|
bld.recurse('maschine2')
|
2020-02-20 13:12:36 +01:00
|
|
|
if bld.is_defined ('HAVE_WEBSOCKETS'):
|
|
|
|
|
bld.recurse('websockets')
|