Robin Gareus
ba78359129
uselib is no longer implicit (inherited by .use). This is still incomplete, some uselibs for non-linux variants may be missing. bld.is_defined("HAVE_XXX") also no longer works and will have to be changed (I think to bld.env["HAVE_XXX"]) in countless places.
30 lines
775 B
Python
30 lines
775 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_1in2out.cc' ]
|
|
obj.export_includes = ['.']
|
|
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'
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'panners')
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|