mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Towards waf python 2+3 support
This commit is contained in:
parent
dfe712c564
commit
2e9ac80e99
22 changed files with 517 additions and 94 deletions
|
|
@ -12,14 +12,13 @@ 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 '
|
||||
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'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue