Robin Gareus
8a93a87db0
Those objects do not have a versioned API by themselves. This fixes issues with duplicate deployment (OSX, Linux bundles: cp) and ardour listing control-surfaces multiple times (file index plugin dir).
29 lines
739 B
Python
29 lines
739 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
import os
|
|
|
|
# Mandatory variables
|
|
top = '.'
|
|
out = 'build'
|
|
|
|
def options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def configure(conf):
|
|
autowaf.configure(conf)
|
|
|
|
def build(bld):
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
obj.source = [ 'panner_2in2out.cc' ]
|
|
obj.export_includes = ['.']
|
|
obj.defines = [ 'PACKAGE="libardour_pan2in2out"' ]
|
|
obj.defines += [ 'ARDOURPANNER_DLL_EXPORTS' ]
|
|
obj.includes = ['.']
|
|
obj.name = 'libardour_pan2in2out'
|
|
obj.target = 'pan2in2out'
|
|
obj.use = 'libardour libardour_cp libpbd'
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'panners')
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|