2009-02-27 00:27:14 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
import autowaf
|
2009-02-27 04:40:44 +00:00
|
|
|
import os
|
2009-02-27 00:27:14 +00:00
|
|
|
|
|
|
|
|
# Library version (UNIX style major, minor, micro)
|
|
|
|
|
# major increment <=> incompatible changes
|
|
|
|
|
# minor increment <=> compatible changes (additions)
|
|
|
|
|
# micro increment <=> no interface changes
|
2009-08-08 22:36:32 +00:00
|
|
|
APPNAME = 'libardour_cp'
|
2009-07-17 22:12:21 +00:00
|
|
|
LIBARDOUR_CP_LIB_VERSION = '4.1.0'
|
2009-02-27 00:27:14 +00: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 = '''
|
|
|
|
|
basic_ui.cc
|
|
|
|
|
control_protocol.cc
|
|
|
|
|
smpte.cc
|
|
|
|
|
'''
|
2009-07-17 22:12:21 +00:00
|
|
|
obj.export_incdirs = ['.', './control_protocol' ]
|
2009-04-18 16:15:12 +00:00
|
|
|
obj.cxxflags = '-DPACKAGE="ardour_cp"'
|
2009-07-17 22:12:21 +00:00
|
|
|
obj.includes = ['.', './control_protocol']
|
|
|
|
|
obj.name = 'libardour_cp'
|
|
|
|
|
obj.target = 'ardourcp'
|
2009-02-27 00:27:14 +00:00
|
|
|
obj.uselib_local = 'libardour'
|
2009-07-17 22:12:21 +00:00
|
|
|
obj.vnum = LIBARDOUR_CP_LIB_VERSION
|
2009-02-27 04:40:44 +00:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
|
2009-05-04 22:10:15 +00:00
|
|
|
|
2009-02-27 00:27:14 +00:00
|
|
|
def shutdown():
|
|
|
|
|
autowaf.shutdown()
|
|
|
|
|
|