Do not try to restore Route solo state after clearing all solo state
[ardour.git] / cfgtool / wscript
1 #!/usr/bin/env python
2 from waflib.extras import autowaf as autowaf
3
4 top = '.'
5 out = 'build'
6
7 def options(opt):
8     autowaf.set_options(opt)
9
10 def configure(conf):
11     conf.load('misc')
12     conf.load('compiler_cxx')
13     autowaf.configure(conf)
14
15 def build(bld):
16     if bld.env['build_target'] == 'mingw':
17             return;
18
19     obj = bld (features = 'cxx c cxxprogram')
20     obj.source       = 'cfgtool.cc'
21     obj.target       = 'cfgtool'
22     obj.use          = [ 'libpbd', 'libardour' ]
23     obj.uselib       = [ 'GLIBMM', 'XML' ]
24     obj.install_path = None