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
|
|
|
|
|
|
|
# Version of this package (even if built as a child)
|
|
|
|
LIBARDOURVAMPPLUGINS_VERSION = '0.0.0'
|
|
|
|
|
|
|
|
# Library version (UNIX style major, minor, micro)
|
|
|
|
# major increment <=> incompatible changes
|
|
|
|
# minor increment <=> compatible changes (additions)
|
|
|
|
# micro increment <=> no interface changes
|
|
|
|
LIBARDOURVAMPPLUGINS_LIB_VERSION = '0.0.0'
|
|
|
|
|
|
|
|
# Variables for 'waf dist'
|
|
|
|
APPNAME = 'libardourvampplugins'
|
|
|
|
VERSION = LIBARDOURVAMPPLUGINS_VERSION
|
|
|
|
|
|
|
|
# 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-09-29 15:58:05 -04:00
|
|
|
conf.load('compiler_cxx')
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.configure(conf)
|
|
|
|
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
|
2015-11-03 01:51:39 -05:00
|
|
|
EBUr128.cpp
|
|
|
|
ebu_r128_proc.cc
|
2011-04-22 18:15:21 -04:00
|
|
|
OnsetDetect.cpp
|
|
|
|
PercussionOnsetDetector.cpp
|
|
|
|
SpectralCentroid.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'
|
2014-01-14 21:46:41 -05:00
|
|
|
obj.uselib = 'FFTW3F VAMPSDK'
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.use = 'libvampplugin libqmdsp'
|
2014-01-12 15:39:34 -05:00
|
|
|
obj.defines = [ 'ARDOUR_VAMP_PLUGINS_DLL_EPORTS' ]
|
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 '
|
|
|
|
obj.vnum = LIBARDOURVAMPPLUGINS_LIB_VERSION
|
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()
|