mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
19 lines
293 B
Text
19 lines
293 B
Text
|
|
#!/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)
|
||
|
|
|