summaryrefslogtreecommitdiffstats
path: root/src/serialisation/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/serialisation/wscript')
-rw-r--r--src/serialisation/wscript5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/serialisation/wscript b/src/serialisation/wscript
index b946e7bf..b72b6507 100644
--- a/src/serialisation/wscript
+++ b/src/serialisation/wscript
@@ -1,9 +1,8 @@
#!/usr/bin/env python
-import Params
import autowaf
def build(bld):
- obj = bld.create_obj('cpp', 'shlib')
+ obj = bld.new_task_gen('cxx', 'shlib')
obj.source = '''
Parser.cpp
Serialiser.cpp
@@ -12,7 +11,7 @@ def build(bld):
obj.includes = ['.', '..', '../common']
obj.name = 'libingen_serialisation'
obj.target = 'ingen_serialisation'
- obj.inst_dir = bld.env()['LIBDIRNAME'] + 'ingen'
+ obj.install_path = '${LIBDIR}/ingen'
obj.uselib_local = 'libingen_shared'
autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE SLV2 RAUL REDLANDMM')