diff options
Diffstat (limited to 'src/shared/wscript')
-rw-r--r-- | src/shared/wscript | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/shared/wscript b/src/shared/wscript deleted file mode 100644 index 8a873653..00000000 --- a/src/shared/wscript +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/env python -from waflib.extras import autowaf as autowaf - -sources = [ - 'AtomReader.cpp', - 'AtomWriter.cpp', - 'Builder.cpp', - 'ClashAvoider.cpp', - 'Configuration.cpp', - 'Forge.cpp', - 'LV2Features.cpp', - 'Store.cpp', - 'URIMap.cpp', - 'URIs.cpp', - 'World.cpp', - 'runtime_paths.cpp', -] - -def build(bld): - obj = bld(features = 'cxx cxxshlib', - source = sources, - export_includes = ['../..'], - includes = ['../..'], - name = 'libingen_shared', - target = 'ingen_shared', - use = 'libingen', - vnum = '0.0.0', - install_path = '${LIBDIR}', - lib = ['dl']) - autowaf.use_lib(bld, obj, 'GLIBMM LV2 LILV RAUL SORD LV2_MIDI') - - if bld.env['BUILD_TESTS']: - obj = bld(features = 'cxx cxxshlib', - source = sources, - export_includes = ['../..'], - includes = ['../..'], - name = 'libingen_shared_profiled', - target = 'ingen_shared_profiled', - use = 'libingen', - install_path = '', - lib = ['dl'] + bld.env['INGEN_TEST_LIBS'], - cxxflags = bld.env['INGEN_TEST_CXXFLAGS']) - autowaf.use_lib(bld, obj, 'GLIBMM LV2 LILV RAUL SORD LV2_MIDI') - |