ardour/libs/vamp-plugins/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

51 lines
1.6 KiB
Python

#!/usr/bin/env python
from waflib.extras import autowaf as autowaf
import os
def options(opt):
pass
def configure(conf):
autowaf.check_pkg(conf, 'fftw3f', uselib_store='FFTW3F', mandatory=True)
autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
atleast_version='0.3.2')
autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO4',
atleast_version='0.4.0', mandatory=False)
conf.write_config_header('libvampplugins-config.h', remove=False)
def build(bld):
# Library
obj = bld(features = 'cxx cxxshlib')
obj.source = '''
plugins.cpp
AmplitudeFollower.cpp
BarBeatTrack.cpp
BeatTrack.cpp
ChromagramPlugin.cpp
EBUr128.cpp
ebu_r128_proc.cc
KeyDetect.cpp
OnsetDetect.cpp
PercussionOnsetDetector.cpp
SimilarityPlugin.cpp
SpectralCentroid.cpp
TonalChangeDetect.cpp
Transcription.cpp
TruePeak.cpp
ZeroCrossing.cpp
'''
obj.export_includes = ['.']
obj.includes = ['.']
obj.name = 'libardourvampplugins'
obj.target = 'ardourvampplugins'
obj.uselib = 'FFTW3F VAMPSDK QMDSP'
obj.use = 'libvampplugin libqm-dsp'
autowaf.ensure_visible_symbols (obj, True)
if bld.is_defined('HAVE_AUBIO4'):
obj.source += ' Onset.cpp '
obj.uselib += ' AUBIO4 '
elif bld.is_defined('HAVE_AUBIO'):
obj.source += ' Onset.cpp '
obj.uselib += ' AUBIO '
obj.install_path = os.path.join(bld.env['LIBDIR'], 'vamp')