X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Faudiographer%2Fwscript;h=d3efbf59ef6ba38701aeb97654e94bd05b5acbac;hb=6f7112547658b01594d8cd81a0f52c4edc017e1d;hp=183b272518114cef62f3abcdea5b8cb395b2009e;hpb=8648a8a13b04549362f14a0738947d997ef1abc7;p=ardour.git diff --git a/libs/audiographer/wscript b/libs/audiographer/wscript index 183b272518..d3efbf59ef 100644 --- a/libs/audiographer/wscript +++ b/libs/audiographer/wscript @@ -59,7 +59,8 @@ def build(bld): 'src/general/sample_format_converter.cc', 'src/routines.cc', 'src/debug_utils.cc', - 'src/general/broadcast_info.cc' + 'src/general/broadcast_info.cc', + 'src/general/normalizer.cc' ] if bld.is_defined('HAVE_SAMPLERATE'): audiographer_sources += [ 'src/general/sr_converter.cc' ] @@ -68,10 +69,8 @@ def build(bld): audiographer = bld.shlib(features = 'c cxx cshlib cxxshlib', source=audiographer_sources) # macros for this shared library audiographer.defines = [ 'LIBAUDIOGRAPHER_DLL_EXPORTS=1' ] - audiographer.cflags = [ '-fvisibility=hidden' ] - audiographer.cxxflags = [ '-fvisibility=hidden' ] else: - audiographer = bld.stlib(features = 'c cxx cstlib cxxstlib', source=libardour_sources) + audiographer = bld.stlib(features = 'c cxx cstlib cxxstlib', source=audiographer_sources) audiographer.cxxflags = [ '-fPIC' ] audiographer.cflags = [ '-fPIC' ] audiographer.defines = [] @@ -83,7 +82,7 @@ def build(bld): audiographer.uselib = 'GLIB GLIBMM GTHREAD SAMPLERATE SNDFILE' audiographer.use = 'libpbd' audiographer.vnum = AUDIOGRAPHER_LIB_VERSION - audiographer.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3') + audiographer.install_path = bld.env['LIBDIR'] if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):