13
0
livetrax/libs/surfaces/wscript
David Robillard 310d68b953 Waf building of libardour (yay!).
git-svn-id: svn://localhost/ardour2/branches/3.0@4661 d708f5d6-7413-0410-9779-e7cbd77b26cf
2009-02-25 21:48:32 +00:00

60 lines
1.8 KiB
Python

#!/usr/bin/env python
import autowaf
# Version of this package (even if built as a child)
LIBSURFACES_VERSION = '0.0.0'
# Library version (UNIX style major, minor, micro)
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
LIBSURFACES_LIB_VERSION = '4.1.0'
# Variables for 'waf dist'
APPNAME = 'libsurfaces'
VERSION = LIBSURFACES_VERSION
# Mandatory variables
srcdir = '.'
blddir = 'build'
def set_options(opt):
autowaf.set_options(opt)
def configure(conf):
autowaf.configure(conf)
autowaf.check_tool(conf, 'compiler_cxx')
autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.2', mandatory=True)
autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.14.0', mandatory=True)
autowaf.check_pkg(conf, 'sigc++-2.0', uselib_store='SIGCPP', atleast_version='2.0', mandatory=True)
autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML', mandatory=True)
autowaf.check_pkg(conf, 'uuid', uselib_store='UUID', mandatory=True)
conf.env.append_value('CXXFLAGS', '-DHAVE_WAFCONFIG_H')
conf.write_config_header('wafconfig.h')
# Boost headers
autowaf.check_header(conf, 'boost/shared_ptr.hpp', mandatory=True)
autowaf.check_header(conf, 'boost/weak_ptr.hpp', mandatory=True)
def build(bld):
# Library
obj = bld.new_task_gen('cxx', 'shlib')
obj.source = '''
control_protocol/basic_ui.cc
control_protocol/control_protocol.cc
control_protocol/smpte.cc
'''
obj.export_incdirs = ['./control_protocol']
obj.cxxflags = '-DPACKAGE=\\\"ardour_cp\\\"'
obj.includes = ['.', './control_protocol']
obj.name = 'libsurfaces'
obj.target = 'surfaces'
obj.uselib_local = 'libardour'
obj.vnum = LIBSURFACES_LIB_VERSION
obj.install_path = ''
def shutdown():
autowaf.shutdown()