ardour/tools/bb/wscript
Mads Kiilerich d220f477ed wscript: drop unused "mandatory variables" 'top' and 'out' in libs
Variables by these names are only used from the local wscript and when
running "waf configure", which already for other reasons only can run at
the top-level.

These variables are thus not mandatory and not used.
2023-09-17 07:34:55 -06:00

40 lines
1.2 KiB
Python

#!/usr/bin/env python
import waflib.Utils as Utils
import os
def options(ctx):
pass
def configure(ctx):
pass
def build(bld):
obj = bld (features = 'cxx c cxxprogram')
obj.install_path = None
obj.source = [ 'bb.cc', 'gui.cc', 'misc.cc' ]
obj.target = 'bb'
obj.includes = ['.', '../libs']
obj.use = [ 'libardour', 'libevoral', ]
obj.uselib = 'JACK GTKMM XML'
wrapper_subst_dict = {
'INSTALL_PREFIX' : bld.env['PREFIX'],
'LIBDIR' : os.path.normpath(bld.env['DLLDIR']),
'DATADIR' : os.path.normpath(bld.env['DATADIR']),
'CONFDIR' : os.path.normpath(bld.env['CONFDIR']),
'LIBS' : 'build/libs',
'VERSION' : str (bld.env['VERSION']),
'EXECUTABLE' : 'build/tools/bb/bb'
}
def set_subst_dict(obj, dict):
for i in dict:
setattr(obj, i, dict[i])
obj = bld (features = 'subst')
obj.source = '../../gtk2_ardour/ardev_common.sh.in'
obj.target = 'bbdev_common_waf.sh'
obj.chmod = Utils.O755
obj.dict = wrapper_subst_dict
set_subst_dict(obj, wrapper_subst_dict)