summaryrefslogtreecommitdiffstats
path: root/src/serialisation/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/serialisation/wscript')
-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')