wscript: drop liblo check in libs/surfaces - it is already mandatory in top level wscript

This commit is contained in:
Mads Kiilerich 2022-01-27 17:39:49 +01:00 committed by Robin Gareus
parent 59320b378f
commit 9b89dd7967
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 5 deletions

View File

@ -28,6 +28,7 @@ children = [
'mackie',
'us2400',
'launch_control_xl',
'osc',
]
def options(opt):
@ -57,9 +58,6 @@ def configure(conf):
children += [ 'maschine2' ]
conf.define('BUILD_MASCHINE', 1)
if autowaf.check_pkg (conf, 'liblo', mandatory=False, uselib_store="LO", atleast_version="0.24"):
children += [ 'osc' ]
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)
@ -93,8 +91,6 @@ def build(bld):
bld.recurse('us2400')
bld.recurse('launch_control_xl')
if bld.is_defined ('HAVE_LO'):
bld.recurse('osc')
if bld.is_defined('BUILD_WIIMOTE'):
bld.recurse('wiimote')
if bld.is_defined('BUILD_TRANZPORT'):