2011-01-26 20:31:03 -05:00
|
|
|
#!/usr/bin/env python
|
2011-09-29 15:17:54 -04:00
|
|
|
from waflib.extras import autowaf as autowaf
|
2011-01-26 20:31:03 -05:00
|
|
|
import os
|
|
|
|
|
|
|
|
# Mandatory variables
|
2011-09-29 15:17:54 -04:00
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
2011-01-26 20:31: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)
|
2011-01-26 20:31:03 -05:00
|
|
|
|
|
|
|
def configure(conf):
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.configure(conf)
|
2011-01-26 20:31:03 -05:00
|
|
|
|
|
|
|
def build(bld):
|
2011-09-29 15:17:54 -04:00
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.source = [ 'panner_1in2out.cc' ]
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.export_includes = ['.']
|
2014-01-10 16:07:57 -05:00
|
|
|
obj.defines = [ 'PACKAGE="libardour_pan1in2out"' ]
|
|
|
|
obj.defines += [ 'ARDOURPANNER_DLL_EXPORTS' ]
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.includes = ['.']
|
|
|
|
obj.name = 'libardour_pan1in2out'
|
|
|
|
obj.target = 'pan1in2out'
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.use = 'libardour libardour_cp libpbd'
|
2014-04-28 21:11:08 -04:00
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'panners')
|
2011-01-26 20:31:03 -05:00
|
|
|
|
|
|
|
def shutdown():
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.shutdown()
|