#!/usr/bin/env python from waflib.extras import autowaf as autowaf def build(bld): obj = bld(features = 'cxx cxxshlib', source = 'Parser.cpp Serialiser.cpp serialisation.cpp', export_includes = ['../..'], includes = ['../..'], name = 'libingen_serialisation', target = 'ingen_serialisation', install_path = '${LIBDIR}', use = 'libingen_shared') autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE LILV RAUL SORD')