mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +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:
|
||||
backends = [ 'jack', 'alsa' ]
|
||||
else:
|
||||
backends = [ ]
|
||||
backends = [ 'wavesaudio' ]
|
||||
|
||||
if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc':
|
||||
backends += [ 'wavesaudio' ]
|
||||
#if sys.platform == 'darwin' or sys.platform == 'mingw' or sys.platform == 'msvc':
|
||||
# backends += [ 'wavesaudio' ]
|
||||
|
||||
return backends
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue