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
|
|
|
|
|
|
|
# Mandatory variables
|
2011-09-29 15:17:54 -04:00
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
2009-02-26 19:27:14 -05:00
|
|
|
|
2013-10-17 13:15:24 -04:00
|
|
|
controlcp_sources = [
|
|
|
|
'basic_ui.cc',
|
|
|
|
'control_protocol.cc',
|
|
|
|
]
|
|
|
|
|
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):
|
2013-10-17 13:15:24 -04:00
|
|
|
if bld.is_defined ('INTERNAL_SHARED_LIBS'):
|
|
|
|
obj = bld.shlib(features = 'c cxx cshlib cxxshlib', source=controlcp_sources)
|
|
|
|
# defines for this library
|
2014-01-10 16:07:57 -05:00
|
|
|
obj.defines = [ 'LIBCONTROLCP_DLL_EXPORTS' ]
|
2013-10-17 13:15:24 -04:00
|
|
|
else:
|
|
|
|
obj = bld.stlib(features = 'c cxx cstlib cxxstlib', source=controlcp_sources)
|
2018-10-14 22:06:11 -04:00
|
|
|
obj.cxxflags = [ bld.env['compiler_flags_dict']['pic'] ]
|
2013-10-17 13:15:24 -04:00
|
|
|
obj.defines = [ ]
|
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.export_includes = ['.', './control_protocol' ]
|
2013-10-17 13:15:24 -04:00
|
|
|
obj.defines += [ 'PACKAGE="ardour_cp"' ]
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.includes = ['.', './control_protocol']
|
|
|
|
obj.name = 'libardour_cp'
|
|
|
|
obj.target = 'ardourcp'
|
2016-07-14 14:44:52 -04:00
|
|
|
obj.use = 'libardour libpbd'
|
2016-02-28 15:16:44 -05:00
|
|
|
obj.uselib = 'GLIBMM SIGCPP XML'
|
2014-04-28 21:18:02 -04:00
|
|
|
obj.install_path = bld.env['LIBDIR']
|
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()
|