summaryrefslogtreecommitdiffstats
path: root/src/serialisation
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-16 04:04:45 +0000
committerDavid Robillard <d@drobilla.net>2010-12-16 04:04:45 +0000
commit50701a1143c836d24d368298ee9068e721c8a066 (patch)
tree0b7fe58a65d60d6b87c0165f101a7836ba96e8a8 /src/serialisation
parent6ff0b063d9ffb66e690d34bcf934eeab1a3bf46d (diff)
downloadingen-50701a1143c836d24d368298ee9068e721c8a066.tar.gz
ingen-50701a1143c836d24d368298ee9068e721c8a066.tar.bz2
ingen-50701a1143c836d24d368298ee9068e721c8a066.zip
Updates for waf 1.6.
Note: this revision breaks documentation installation. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2719 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation')
-rw-r--r--src/serialisation/wscript16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/serialisation/wscript b/src/serialisation/wscript
index 92f5ef3d..4d2fe690 100644
--- a/src/serialisation/wscript
+++ b/src/serialisation/wscript
@@ -3,19 +3,19 @@ import autowaf
def build(bld):
# Headers
- bld.install_files('${INCLUDEDIR}/ingen/serialisation', '*.hpp')
+ bld.install_files('${INCLUDEDIR}/ingen/serialisation', bld.path.ant_glob('*.hpp'))
- obj = bld.new_task_gen('cxx', 'shlib')
+ obj = bld(features = 'cxx cxxshlib')
obj.source = '''
Parser.cpp
Serialiser.cpp
serialisation.cpp
'''
- obj.export_incdirs = ['.']
- obj.includes = ['.', '..', '../..', '../common']
- obj.name = 'libingen_serialisation'
- obj.target = 'ingen_serialisation'
- obj.install_path = '${LIBDIR}'
- obj.uselib_local = 'libingen_shared'
+ obj.export_includes = ['.']
+ obj.includes = ['.', '..', '../..', '../common']
+ obj.name = 'libingen_serialisation'
+ obj.target = 'ingen_serialisation'
+ obj.install_path = '${LIBDIR}'
+ obj.use = 'libingen_shared'
autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE SLV2 RAUL REDLANDMM')