monitor send gets access to the (shared) pannable of the track/bus, thus ensuring...
[ardour.git] / libs / panners / wscript
1 #!/usr/bin/env python
2 import autowaf
3 import os
4
5 # Mandatory variables
6 srcdir = '.'
7 blddir = 'build'
8
9 panners = [ '2in2out', '1in2out', 'vbap' ]
10
11 def set_options(opt):
12     autowaf.set_options(opt)
13
14 def sub_config_and_use(conf, name, has_objects = True):
15     conf.sub_config(name)
16     autowaf.set_local_lib(conf, name, has_objects)
17
18 def configure(conf):
19     autowaf.set_recursive()
20     autowaf.configure(conf)
21
22     for i in panners:
23         sub_config_and_use(conf, i)
24
25 def build(bld):
26     for i in panners:
27         bld.add_subdirs(i)