19 lines
293 B
Plaintext
19 lines
293 B
Plaintext
|
#!/usr/bin/env python
|
||
|
import autowaf
|
||
|
import os
|
||
|
|
||
|
# Mandatory variables
|
||
|
srcdir = '.'
|
||
|
blddir = 'build'
|
||
|
|
||
|
#panners = [ '2in2out', 'vbap', '1in1out' ]
|
||
|
panners = [ '2in2out' ]
|
||
|
|
||
|
def set_options(opt):
|
||
|
autowaf.set_options(opt)
|
||
|
|
||
|
def build(bld):
|
||
|
for i in panners:
|
||
|
bld.add_subdirs(i)
|
||
|
|