2009-02-26 19:27:14 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import 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
|
|
|
|
srcdir = '.'
|
|
|
|
blddir = 'build'
|
|
|
|
|
|
|
|
def set_options(opt):
|
|
|
|
autowaf.set_options(opt)
|
|
|
|
|
|
|
|
def configure(conf):
|
|
|
|
autowaf.configure(conf)
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
obj = bld.new_task_gen('cxx', 'shlib')
|
|
|
|
obj.source = '''
|
|
|
|
wiimote.cc
|
|
|
|
interface.cc
|
|
|
|
'''
|
|
|
|
obj.export_incdirs = ['./wiimote']
|
2009-04-18 12:15:12 -04:00
|
|
|
obj.cxxflags = '-DPACKAGE="ardour_wiimote"'
|
2009-02-26 19:27:14 -05:00
|
|
|
obj.includes = ['.', './wiimote']
|
|
|
|
obj.name = 'libwiimote'
|
|
|
|
obj.target = 'wiimote'
|
2009-07-20 08:16:42 -04:00
|
|
|
obj.uselib_local = 'libardour libardour_cp'
|
2009-07-20 23:23:57 -04:00
|
|
|
obj.vnum = LIBARDOUR_WIIMOTE_LIB_VERSION
|
2009-10-20 19:43:19 -04:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3', 'surfaces')
|
2009-05-04 18:10:15 -04:00
|
|
|
|
2009-02-26 19:27:14 -05:00
|
|
|
def shutdown():
|
|
|
|
autowaf.shutdown()
|
|
|
|
|