#!/usr/bin/env python from waflib.extras import autowaf as autowaf def build(bld): obj = bld(features = 'cxx cxxshlib', includes = ['../..', '../../include'], export_includes = ['../../include'], name = 'libingen_client', target = 'ingen_client', install_path = '${LIBDIR}', use = 'libingen_shared') autowaf.use_lib(bld, obj, 'GLIBMM LV2CORE LILV SUIL RAUL SORD SIGCPP') obj.source = ''' ClientStore.cpp NodeModel.cpp ObjectModel.cpp PatchModel.cpp PluginModel.cpp PluginUI.cpp PortModel.cpp ThreadedSigClientInterface.cpp ingen_client.cpp '''