summaryrefslogtreecommitdiff
path: root/libs/surfaces/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-25 21:48:32 +0000
committerDavid Robillard <d@drobilla.net>2009-02-25 21:48:32 +0000
commit310d68b953fca09b057aaa87703747546e98d354 (patch)
tree0c3f72419950f6ff3a8b8792362988d531be6736 /libs/surfaces/wscript
parent5fe34018143a49d084a8fcdabf7e66e4fac85026 (diff)
Waf building of libardour (yay!).
git-svn-id: svn://localhost/ardour2/branches/3.0@4661 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/surfaces/wscript')
-rw-r--r--libs/surfaces/wscript59
1 files changed, 59 insertions, 0 deletions
diff --git a/libs/surfaces/wscript b/libs/surfaces/wscript
new file mode 100644
index 0000000000..520dd7ff47
--- /dev/null
+++ b/libs/surfaces/wscript
@@ -0,0 +1,59 @@
+#!/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()
+