summaryrefslogtreecommitdiff
path: root/libs/surfaces/wiimote
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/wiimote
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/wiimote')
-rw-r--r--libs/surfaces/wiimote/wscript37
1 files changed, 37 insertions, 0 deletions
diff --git a/libs/surfaces/wiimote/wscript b/libs/surfaces/wiimote/wscript
new file mode 100644
index 0000000000..0de54b06cd
--- /dev/null
+++ b/libs/surfaces/wiimote/wscript
@@ -0,0 +1,37 @@
+#!/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 = '''
+ wiimote.cc
+ interface.cc
+ '''
+ obj.export_incdirs = ['./wiimote']
+ obj.cxxflags = '-DPACKAGE=\\\"ardour_wiimote\\\"'
+ obj.includes = ['.', './wiimote']
+ obj.name = 'libwiimote'
+ obj.target = 'wiimote'
+ obj.uselib_local = 'libardour libsurfaces'
+ obj.vnum = LIBSURFACES_LIB_VERSION
+ obj.install_path = ''
+
+def shutdown():
+ autowaf.shutdown()
+