2009-02-25 20:34:03 -05:00
|
|
|
#!/usr/bin/env python
|
2011-09-29 15:17:54 -04:00
|
|
|
from waflib.extras import autowaf as autowaf
|
2009-02-26 23:40:44 -05:00
|
|
|
import os
|
2009-02-25 20:34:03 -05:00
|
|
|
|
|
|
|
# Mandatory variables
|
2011-09-29 15:17:54 -04:00
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
2009-02-25 20:34:03 -05:00
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
def options(opt):
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.set_options(opt)
|
2009-02-25 20:34:03 -05:00
|
|
|
|
|
|
|
def configure(conf):
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.check_pkg(conf, 'fftw3f', uselib_store='FFTW3F', mandatory=True)
|
2014-01-12 12:11:14 -05:00
|
|
|
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)
|
2011-09-29 15:17:54 -04:00
|
|
|
conf.write_config_header('libvampplugins-config.h', remove=False)
|
2009-02-25 20:34:03 -05:00
|
|
|
|
|
|
|
def build(bld):
|
2011-04-22 18:15:21 -04:00
|
|
|
# Library
|
2011-09-29 15:17:54 -04:00
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.source = '''
|
|
|
|
plugins.cpp
|
|
|
|
AmplitudeFollower.cpp
|
2016-10-05 18:40:33 -04:00
|
|
|
BarBeatTrack.cpp
|
|
|
|
BeatTrack.cpp
|
|
|
|
ChromagramPlugin.cpp
|
2015-11-03 01:51:39 -05:00
|
|
|
EBUr128.cpp
|
|
|
|
ebu_r128_proc.cc
|
2016-10-05 18:40:33 -04:00
|
|
|
KeyDetect.cpp
|
2011-04-22 18:15:21 -04:00
|
|
|
OnsetDetect.cpp
|
|
|
|
PercussionOnsetDetector.cpp
|
2016-10-05 18:40:33 -04:00
|
|
|
SimilarityPlugin.cpp
|
2011-04-22 18:15:21 -04:00
|
|
|
SpectralCentroid.cpp
|
2016-10-05 18:40:33 -04:00
|
|
|
TonalChangeDetect.cpp
|
|
|
|
Transcription.cpp
|
2016-02-11 04:24:22 -05:00
|
|
|
TruePeak.cpp
|
2011-04-22 18:15:21 -04:00
|
|
|
ZeroCrossing.cpp
|
|
|
|
'''
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.export_includes = ['.']
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.includes = ['.']
|
|
|
|
obj.name = 'libardourvampplugins'
|
|
|
|
obj.target = 'ardourvampplugins'
|
2016-08-14 17:49:53 -04:00
|
|
|
obj.uselib = 'FFTW3F VAMPSDK QMDSP'
|
|
|
|
obj.use = 'libvampplugin libqm-dsp'
|
2014-01-17 13:10:41 -05:00
|
|
|
autowaf.ensure_visible_symbols (obj, True)
|
2016-02-29 05:28:04 -05:00
|
|
|
if bld.is_defined('HAVE_AUBIO4'):
|
2016-02-28 15:16:44 -05:00
|
|
|
obj.source += ' Onset.cpp '
|
|
|
|
obj.uselib += ' AUBIO4 '
|
2016-02-29 05:28:04 -05:00
|
|
|
elif bld.is_defined('HAVE_AUBIO'):
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.source += ' Onset.cpp '
|
|
|
|
obj.uselib += ' AUBIO '
|
2014-04-28 21:11:08 -04:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'vamp')
|
2009-05-04 18:10:15 -04:00
|
|
|
|
2009-02-25 20:34:03 -05:00
|
|
|
def shutdown():
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.shutdown()
|