summaryrefslogtreecommitdiff
path: root/tools/bb/wscript
blob: e419fa2465e9d6aaf4c27bf66936e5ccddae1d3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import waflib.Logs as Logs, waflib.Utils as Utils
import os

# Mandatory variables
top = '.'
out = 'build'

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.ldflags   = ['-no-undefined']
	obj.use       = [ 'libardour', 'libevoral', ]
	obj.uselib    = ' JACK GTKMM '

        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)