Files
ardour/libs/zita-resampler/wscript
Mads Kiilerich 3b4cf9191c wscript: drop unused VERSION assignment in libs
https://waf.io/book/ says
  By default, the project name and version are set to noname and 1.0. To
  change them, it is necessary to provide two additional variables in the
  top-level project file

- and waf code inspection confirms that waf itself only will use the top
  level VERSION.

Some wscripts will use
  bld.env['VERSION']
but that will also just use the value set in the top wscript.
2023-09-17 07:34:55 -06:00

50 lines
1.3 KiB
Python

#!/usr/bin/env python
from waflib.extras import autowaf as autowaf
# 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'
# Variables for 'waf dist'
APPNAME = 'zita-resampler'
I18N_PACKAGE = 'libzita-resampler'
# Mandatory variables
top = '.'
out = 'build'
zresampler_sources = [
'resampler.cc',
'resampler-table.cc',
'cresampler.cc',
'vresampler.cc',
'vmresampler.cc'
]
def options(opt):
autowaf.set_options(opt)
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 + '"' ]
def shutdown():
autowaf.shutdown()