13
0

Do not install static libs

There is no need to deploy .a with ardour installations.
This commit is contained in:
Robin Gareus 2020-01-22 00:13:34 +01:00
parent 81c3bf175a
commit 95f3977f07
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
3 changed files with 0 additions and 3 deletions

View File

@ -77,7 +77,6 @@ def build(bld):
obj.name = 'libqm-dsp'
obj.target = 'qm-dsp'
obj.vnum = QM_DSP_VERSION
obj.install_path = bld.env['LIBDIR']
if bld.env['build_target'] != 'mingw':
obj.cxxflags += [ bld.env['compiler_flags_dict']['pic'] ]
obj.cflags += [ bld.env['compiler_flags_dict']['pic'] ]

View File

@ -47,7 +47,6 @@ def build(bld):
obj.name = 'zita-convolver'
obj.target = 'zita-convolver'
obj.vnum = ZCONVOLVER_LIB_VERSION
obj.install_path = bld.env['LIBDIR']
obj.uselib = 'FFTW3F'
obj.defines = [ 'PACKAGE="' + I18N_PACKAGE + '"', 'ENABLE_VECTOR_MODE', '_POSIX_PTHREAD_SEMANTICS', '_REENTRANT' ]

View File

@ -48,7 +48,6 @@ def build(bld):
obj.name = 'zita-resampler'
obj.target = 'zita-resampler'
obj.vnum = ZRESAMPLER_LIB_VERSION
obj.install_path = bld.env['LIBDIR']
obj.defines = [ 'PACKAGE="' + I18N_PACKAGE + '"' ]
def shutdown():