25 lines
657 B
Python
25 lines
657 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
import os
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
def build(bld):
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
obj.source = [ 'panner_balance.cc' ]
|
|
obj.defines = ['PACKAGE="libardour_panbalance"']
|
|
obj.defines += ['ARDOURPANNER_DLL_EXPORTS']
|
|
obj.includes = ['.']
|
|
obj.name = 'libardour_panbalance'
|
|
obj.target = 'panbalance'
|
|
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()
|