Robin Gareus
3f3d0c7e49
Those are not shared libraries but only dynamically loaded plugin objects. Their headers are their own.
29 lines
728 B
Python
29 lines
728 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):
|
|
pass
|
|
|
|
def build(bld):
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
obj.source = [ 'panner_1in2out.cc' ]
|
|
obj.defines = [ 'PACKAGE="libardour_pan1in2out"' ]
|
|
obj.defines += [ 'ARDOURPANNER_DLL_EXPORTS' ]
|
|
obj.includes = ['.']
|
|
obj.name = 'libardour_pan1in2out'
|
|
obj.target = 'pan1in2out'
|
|
obj.use = 'libardour libardour_cp libpbd'
|
|
obj.uselib = 'GLIBMM XML OSX'
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'panners')
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|