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)
|
|
|
|
autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO', 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
|
|
|
|
OnsetDetect.cpp
|
|
|
|
PercussionOnsetDetector.cpp
|
|
|
|
SpectralCentroid.cpp
|
|
|
|
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'
|
|
|
|
obj.uselib = 'FFTW3F'
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.use = 'libvampplugin libqmdsp'
|
2011-09-29 16:29:06 -04:00
|
|
|
if 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
|
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3', '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()
|