The return of the Mixbus Send-options (allow aux-feedback override)
[ardour.git] / libs / qm-dsp / wscript
index b68e14e1db8ac59755b7ae012e54699eed5e3445..92dc9502b17ffff4db002fcbf7bd53dfcd7d27a4 100644 (file)
@@ -3,13 +3,13 @@ from waflib.extras import autowaf as autowaf
 import os
 
 # Version of this package (even if built as a child)
-QM_DSP_VERSION = '0.0.0'
+QM_DSP_VERSION = '1.7.1'
 
 # Library version (UNIX style major, minor, micro)
 # major increment <=> incompatible changes
 # minor increment <=> compatible changes (additions)
 # micro increment <=> no interface changes
-QM_DSP_LIB_VERSION = '0.0.0'
+QM_DSP_LIB_VERSION = '1.7.1'
 
 # Variables for 'waf dist'
 APPNAME = 'qm-dsp'
@@ -35,7 +35,7 @@ def build(bld):
         return
 
     # Host Library
-    obj = bld(features = 'c cxx cxxshlib')
+    obj = bld(features = 'c cxx cxxstlib')
     obj.source = '''
             base/Pitch.cpp
             base/KaiserWindow.cpp
@@ -70,7 +70,7 @@ def build(bld):
             ext/kissfft/kiss_fft.c
             ext/kissfft/tools/kiss_fftr.c
     '''
-    autowaf.ensure_visible_symbols (obj, True)
+    autowaf.ensure_visible_symbols (obj, False)
     obj.export_includes = ['.']
     obj.includes     = ['.', 'ext/kissfft', 'ext/kissfft/tools/']
     obj.defines      = ['kiss_fft_scalar=double']
@@ -79,8 +79,8 @@ def build(bld):
     obj.vnum         = QM_DSP_VERSION
     obj.install_path = bld.env['LIBDIR']
     if bld.env['build_target'] != 'mingw':
-        obj.cxxflags = [ '-fPIC' ]
-        obj.cflags   = [ '-fPIC' ]
+        obj.cxxflags += [ '-fPIC' ]
+        obj.cflags   += [ '-fPIC' ]
 
 def shutdown():
     autowaf.shutdown()