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
|
|
|
|
|
|
|
|
# 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
|
2011-09-29 19:17:54 +00:00
|
|
|
top = '.'
|
|
|
|
|
out = 'build'
|
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):
|
2011-04-22 22:15:21 +00:00
|
|
|
autowaf.configure(conf)
|
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 = '''
|
|
|
|
|
basic_ui.cc
|
|
|
|
|
control_protocol.cc
|
|
|
|
|
'''
|
2011-09-29 19:17:54 +00:00
|
|
|
obj.export_includes = ['.', './control_protocol' ]
|
2013-03-20 17:18:55 -04:00
|
|
|
obj.cxxflags = '-DPACKAGE="ardour_cp" -fPIC'
|
2011-04-22 22:15:21 +00:00
|
|
|
obj.includes = ['.', './control_protocol']
|
2013-09-03 08:33:51 -04:00
|
|
|
obj.defines = [ 'ARDOURSURFACE_DLL_EXPORTS' ]
|
2011-04-22 22:15:21 +00:00
|
|
|
obj.name = 'libardour_cp'
|
|
|
|
|
obj.target = 'ardourcp'
|
2013-03-20 17:18:55 -04:00
|
|
|
obj.use = 'ardour libtimecode'
|
2011-04-22 22:15:21 +00:00
|
|
|
obj.vnum = LIBARDOUR_CP_LIB_VERSION
|
|
|
|
|
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():
|
2011-04-22 22:15:21 +00:00
|
|
|
autowaf.shutdown()
|