d220f477ed
Variables by these names are only used from the local wscript and when running "waf configure", which already for other reasons only can run at the top-level. These variables are thus not mandatory and not used.
54 lines
1.7 KiB
Python
54 lines
1.7 KiB
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
import os
|
|
|
|
def options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
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')
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|