2009-02-26 19:27:14 -05:00
|
|
|
#!/usr/bin/env python
|
2011-09-29 15:17:54 -04:00
|
|
|
from waflib.extras import autowaf as autowaf
|
2009-02-26 23:40:44 -05:00
|
|
|
import os
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
# Library version (UNIX style major, minor, micro)
|
|
|
|
# major increment <=> incompatible changes
|
|
|
|
# minor increment <=> compatible changes (additions)
|
|
|
|
# micro increment <=> no interface changes
|
2009-07-20 23:23:57 -04:00
|
|
|
LIBARDOUR_WIIMOTE_LIB_VERSION = '4.1.0'
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
# Mandatory variables
|
2011-09-29 15:17:54 -04:00
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
2009-02-26 19:27:14 -05:00
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
def options(opt):
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.set_options(opt)
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
def configure(conf):
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.configure(conf)
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
def build(bld):
|
2011-09-29 15:17:54 -04:00
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.source = '''
|
|
|
|
wiimote.cc
|
|
|
|
interface.cc
|
|
|
|
'''
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.export_includes = ['./wiimote']
|
2014-01-25 13:57:28 -05:00
|
|
|
obj.defines = [ 'PACKAGE="ardour_wiimote"' ]
|
|
|
|
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
2013-01-07 13:28:09 -05:00
|
|
|
obj.includes = ['.', '../libs']
|
|
|
|
obj.name = 'libardour_wiimote'
|
|
|
|
obj.target = 'ardour_wiimote'
|
|
|
|
obj.uselib = 'GTKMM CWIID'
|
|
|
|
obj.use = 'libardour libardour_cp libgtkmm2ext'
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.vnum = LIBARDOUR_WIIMOTE_LIB_VERSION
|
2014-04-28 21:11:08 -04:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'surfaces')
|
2009-05-04 18:10:15 -04:00
|
|
|
|
2009-02-26 19:27:14 -05:00
|
|
|
def shutdown():
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.shutdown()
|