2009-02-27 00:27:14 +00:00
|
|
|
#!/usr/bin/env python
|
2011-09-29 19:17:54 +00:00
|
|
|
from waflib.extras import autowaf as autowaf
|
2009-02-27 04:40:44 +00:00
|
|
|
import os
|
2009-02-27 00:27:14 +00:00
|
|
|
|
2011-09-29 19:17:54 +00:00
|
|
|
def options(opt):
|
2011-04-22 22:15:21 +00:00
|
|
|
autowaf.set_options(opt)
|
2009-02-27 00:27:14 +00:00
|
|
|
|
|
|
|
|
def configure(conf):
|
2022-01-22 22:09:13 +01:00
|
|
|
pass
|
2009-02-27 00:27:14 +00:00
|
|
|
|
|
|
|
|
def build(bld):
|
2011-09-29 19:17:54 +00:00
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
2011-04-22 22:15:21 +00:00
|
|
|
obj.source = '''
|
|
|
|
|
wiimote.cc
|
|
|
|
|
interface.cc
|
|
|
|
|
'''
|
2014-01-25 13:57:28 -05:00
|
|
|
obj.defines = [ 'PACKAGE="ardour_wiimote"' ]
|
|
|
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
2013-01-07 18:28:09 +00:00
|
|
|
obj.includes = ['.', '../libs']
|
|
|
|
|
obj.name = 'libardour_wiimote'
|
|
|
|
|
obj.target = 'ardour_wiimote'
|
2020-01-20 23:08:11 +01:00
|
|
|
obj.uselib = 'GTKMM CWIID XML'
|
2013-01-07 18:28:09 +00:00
|
|
|
obj.use = 'libardour libardour_cp libgtkmm2ext'
|
2014-04-28 21:11:08 -04:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|
2009-05-04 22:10:15 +00:00
|
|
|
|
2009-02-27 00:27:14 +00:00
|
|
|
def shutdown():
|
2011-04-22 22:15:21 +00:00
|
|
|
autowaf.shutdown()
|