mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
full integration of beatbox test app into ardour tree+build system
Plus a few attempts at catching note on/off quantization stuff
This commit is contained in:
parent
f21a66797a
commit
f9aff37623
7 changed files with 115 additions and 143 deletions
43
tools/bb/wscript
Normal file
43
tools/bb/wscript
Normal file
|
|
@ -0,0 +1,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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue