2bb311f99b
The sub_config_and_use function recursed, but it also invoked autowaf.set_local_lib , which however didn't do anything useful. The HAVE_ defines are not used anywhere, and the AUTOWAF_LOCAL defines are only used in autowaf.use_lib, which however isn't used anywhere. Dropping these defines simplify the build environment and makes the compiler command line half as long and thus makes debugging much more manageable.
20 lines
384 B
Python
20 lines
384 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
autowaf.set_recursive()
|
|
|
|
panners = [ '2in2out', '1in2out', 'vbap', 'stereobalance' ]
|
|
|
|
for i in panners:
|
|
conf.recurse(i)
|
|
|
|
def build(bld):
|
|
panners = [ '2in2out', '1in2out', 'vbap', 'stereobalance' ]
|
|
|
|
for i in panners:
|
|
bld.recurse(i)
|