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-17 18:12:21 -04:00
|
|
|
LIBARDOUR_OSC_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)
|
2009-08-08 18:36:32 -04:00
|
|
|
autowaf.check_pkg(conf, 'liblo', uselib_store='LO', linkflags='-llo')
|
2009-02-26 19:27:14 -05:00
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
obj = bld.new_task_gen('cxx', 'shlib')
|
|
|
|
obj.source = '''
|
|
|
|
osc.cc
|
|
|
|
osc_controllable.cc
|
2010-12-05 17:28:39 -05:00
|
|
|
osc_route_observer.cc
|
2009-02-26 19:27:14 -05:00
|
|
|
interface.cc
|
|
|
|
'''
|
2009-07-17 18:12:21 -04:00
|
|
|
obj.export_incdirs = ['.']
|
2009-04-18 12:15:12 -04:00
|
|
|
obj.cxxflags = '-DPACKAGE="ardour_cp"'
|
2009-02-26 19:27:14 -05:00
|
|
|
obj.includes = ['.', './osc']
|
2009-07-17 18:12:21 -04:00
|
|
|
obj.name = 'libardour_osc'
|
|
|
|
obj.target = 'osc'
|
|
|
|
obj.uselib = ' LO '
|
2009-12-09 13:37:06 -05:00
|
|
|
obj.uselib_local = 'libardour libardour_cp libpbd'
|
2009-07-17 18:12:21 -04:00
|
|
|
obj.vnum = LIBARDOUR_OSC_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()
|
|
|
|
|