mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
add clean and nice check for Tracks builds
This commit is contained in:
parent
8a9dc2c2d5
commit
e1bd9401d5
3 changed files with 11 additions and 3 deletions
|
|
@ -20,7 +20,7 @@ def configure(conf):
|
|||
autowaf.set_recursive()
|
||||
autowaf.configure(conf)
|
||||
|
||||
if conf.env['PROGRAM_NAME'] == 'TracksLive':
|
||||
if bld.is_tracks_build():
|
||||
panners = [ '1in2out', 'vbap', 'stereobalance' ]
|
||||
else:
|
||||
panners = [ '2in2out', '1in2out', 'vbap', 'stereobalance' ]
|
||||
|
|
@ -29,7 +29,7 @@ def configure(conf):
|
|||
sub_config_and_use(conf, i)
|
||||
|
||||
def build(bld):
|
||||
if bld.env['PROGRAM_NAME'] == 'TracksLive':
|
||||
if bld.is_tracks_build():
|
||||
panners = [ '1in2out', 'vbap', 'stereobalance' ]
|
||||
else:
|
||||
panners = [ '2in2out', '1in2out', 'vbap', 'stereobalance' ]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue