2015-03-22 17:15:37 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from waflib.extras import autowaf as autowaf
|
|
|
|
|
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
|
|
|
|
|
|
|
def options(opt):
|
|
|
|
autowaf.set_options(opt)
|
|
|
|
|
|
|
|
def configure(conf):
|
|
|
|
conf.load('misc')
|
|
|
|
conf.load('compiler_cxx')
|
|
|
|
autowaf.configure(conf)
|
|
|
|
|
|
|
|
def build(bld):
|
2015-03-23 07:28:44 -04:00
|
|
|
if bld.env['build_target'] == 'mingw':
|
2015-07-05 08:50:02 -04:00
|
|
|
return;
|
2015-03-22 18:37:55 -04:00
|
|
|
|
2015-03-22 17:15:37 -04:00
|
|
|
obj = bld (features = 'cxx c cxxprogram')
|
2015-03-22 17:26:00 -04:00
|
|
|
obj.source = 'cfgtool.cc'
|
|
|
|
obj.target = 'cfgtool'
|
|
|
|
obj.use = [ 'libpbd', 'libardour', ]
|
|
|
|
obj.use = [ 'libpbd', 'libardour', ]
|
|
|
|
obj.install_path = None
|