From 50701a1143c836d24d368298ee9068e721c8a066 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 16 Dec 2010 04:04:45 +0000 Subject: 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 --- src/serialisation/wscript | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/serialisation') 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') -- cgit v1.2.1