mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 04:06:26 +01:00
[Summary] Fixed backend build issue on Windows
This commit is contained in:
parent
ce65dbfa21
commit
2fb747cce0
1 changed files with 3 additions and 3 deletions
|
|
@ -26,10 +26,10 @@ def backend_list():
|
||||||
if re.search ("linux", sys.platform) != None:
|
if re.search ("linux", sys.platform) != None:
|
||||||
backends = [ 'jack', 'alsa' ]
|
backends = [ 'jack', 'alsa' ]
|
||||||
else:
|
else:
|
||||||
backends = [ ]
|
backends = [ 'wavesaudio' ]
|
||||||
|
|
||||||
if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc':
|
#if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc':
|
||||||
backends += [ 'wavesaudio' ]
|
# backends += [ 'wavesaudio' ]
|
||||||
|
|
||||||
return backends
|
return backends
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue