13
0

tweak backends wscript for cross-compiling with mingw

This commit is contained in:
Paul Davis 2014-09-30 20:35:22 -04:00
parent 8e01b411b2
commit 38e975d6b1

View File

@ -31,7 +31,7 @@ def backend_list():
else:
backends = [ ]
if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc':
if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc' or Options.options.dist_target == 'mingw':
backends += [ 'wavesaudio' ]
return backends