2011-01-17 12:51:44 -05:00
|
|
|
#!/usr/bin/env python
|
2011-09-29 15:17:54 -04:00
|
|
|
from waflib.extras import autowaf as autowaf
|
2011-01-17 12:51:44 -05:00
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
def options(opt):
|
2022-01-25 11:43:36 -05:00
|
|
|
pass
|
2011-01-17 12:51:44 -05:00
|
|
|
|
2011-01-26 20:31:03 -05:00
|
|
|
def configure(conf):
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.set_recursive()
|
2011-01-26 20:31:03 -05:00
|
|
|
|
2019-09-25 14:16:13 -04:00
|
|
|
panners = [ '2in2out', '1in2out', 'vbap', 'stereobalance' ]
|
2015-05-06 07:30:39 -04:00
|
|
|
|
2011-04-22 18:15:21 -04:00
|
|
|
for i in panners:
|
2022-01-27 15:49:21 -05:00
|
|
|
conf.recurse(i)
|
2011-01-26 20:31:03 -05:00
|
|
|
|
2011-01-17 12:51:44 -05:00
|
|
|
def build(bld):
|
2019-09-25 14:16:13 -04:00
|
|
|
panners = [ '2in2out', '1in2out', 'vbap', 'stereobalance' ]
|
2015-05-06 07:30:39 -04:00
|
|
|
|
2011-04-22 18:15:21 -04:00
|
|
|
for i in panners:
|
2011-09-29 15:58:05 -04:00
|
|
|
bld.recurse(i)
|