mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
add --with-wavesbackend config option (disabled by default)
This commit is contained in:
parent
4f58638ac0
commit
aeda6cbea9
2 changed files with 8 additions and 2 deletions
|
|
@ -31,8 +31,9 @@ def backend_list():
|
|||
else:
|
||||
backends = [ ]
|
||||
|
||||
if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc': # or Options.options.dist_target == 'mingw':
|
||||
backends += [ 'wavesaudio' ]
|
||||
if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc' or Options.options.dist_target == 'mingw':
|
||||
if Options.options.build_wavesbackend:
|
||||
backends += [ 'wavesaudio' ]
|
||||
|
||||
return backends
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue