13
0
livetrax/libs/zita-resampler/wscript
Mads Kiilerich 6b61b03434 wscript: drop traces of shutdown() handling
autowaf has no real shutdown functionality anyway. The automatic
shutdown function that could have been called wouldn't work anyway, as
it takes an argument.

The only reason it doesn't fail is that the top level wscript has no
shutdown handling and doesn't recurse to other scripts, so it is all
dead code.
2023-10-15 10:47:16 -06:00

40 lines
1.1 KiB
Python

#!/usr/bin/env python
# Version of this package (even if built as a child)
MAJOR = '1'
MINOR = '6'
MICRO = '0'
ZRESAMPLER_VERSION = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
# Library version (UNIX style major, minor, micro)
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
ZRESAMPLER_LIB_VERSION = '1.6.0'
I18N_PACKAGE = 'libzita-resampler'
zresampler_sources = [
'resampler.cc',
'resampler-table.cc',
'cresampler.cc',
'vresampler.cc',
'vmresampler.cc'
]
def options(opt):
pass
def configure(conf):
pass
def build(bld):
obj = bld.stlib(features = 'cxx cxxstlib', source = zresampler_sources)
obj.cxxflags = [ bld.env['compiler_flags_dict']['pic'], '-O3', '-ffast-math' ]
obj.export_includes = ['.']
obj.includes = ['.']
obj.name = 'zita-resampler'
obj.target = 'zita-resampler'
obj.vnum = ZRESAMPLER_LIB_VERSION
obj.defines = [ 'PACKAGE="' + I18N_PACKAGE + '"' ]