add --with-wavesbackend config option (disabled by default)

This commit is contained in:
Robin Gareus 2014-10-01 18:28:47 +02:00
parent 4f58638ac0
commit aeda6cbea9
2 changed files with 8 additions and 2 deletions

View file

@ -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