summaryrefslogtreecommitdiff
path: root/libs/surfaces/tranzport
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-27 00:27:14 +0000
committerDavid Robillard <d@drobilla.net>2009-02-27 00:27:14 +0000
commit0a61e3893de0149a69415ce218c503025e041712 (patch)
tree53607822826440c6932d0cfed78582becd3ad15b /libs/surfaces/tranzport
parent58febcbacb7c47486a2912cda7549a69421b2c1d (diff)
Waf: build control surfaces.
git-svn-id: svn://localhost/ardour2/branches/3.0@4695 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/surfaces/tranzport')
-rw-r--r--libs/surfaces/tranzport/wscript51
1 files changed, 51 insertions, 0 deletions
diff --git a/libs/surfaces/tranzport/wscript b/libs/surfaces/tranzport/wscript
new file mode 100644
index 0000000000..b83b9c374e
--- /dev/null
+++ b/libs/surfaces/tranzport/wscript
@@ -0,0 +1,51 @@
+#!/usr/bin/env python
+import autowaf
+
+# 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'
+
+# 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 = '''
+ button_events.cc
+ buttons.cc
+ general.cc
+ init.cc
+ interface.cc
+ io.cc
+ io_usb.cc
+ lcd.cc
+ lights.cc
+ mode.cc
+ panner.cc
+ screen.cc
+ show.cc
+ state.cc
+ wheel.cc
+ wheel_modes.cc
+ '''
+ obj.export_incdirs = ['./tranzport']
+ obj.cxxflags = '-DPACKAGE=\\\"ardour_tranzport\\\"'
+ obj.includes = ['.', './tranzport']
+ obj.name = 'libtranzport'
+ obj.target = 'tranzport'
+ obj.uselib_local = 'libardour libsurfaces'
+ obj.vnum = LIBSURFACES_LIB_VERSION
+ obj.install_path = ''
+
+def shutdown():
+ autowaf.shutdown()
+