Replace MiniTK.Audio with OpenAL-CS.
This commit is contained in:
7
thirdparty/fetch-thirdparty-deps.ps1
vendored
7
thirdparty/fetch-thirdparty-deps.ps1
vendored
@@ -123,6 +123,13 @@ if (!(Test-Path "SDL2-CS.dll"))
|
||||
(New-Object System.Net.WebClient).DownloadFile("https://github.com/OpenRA/SDL2-CS/releases/download/20150709/SDL2-CS.dll", $target)
|
||||
}
|
||||
|
||||
if (!(Test-Path "OpenAL-CS.dll"))
|
||||
{
|
||||
echo "Fetching OpenAL-CS from GitHub."
|
||||
$target = Join-Path $pwd.ToString() "OpenAL-CS.dll"
|
||||
(New-Object System.Net.WebClient).DownloadFile("https://github.com/OpenRA/OpenAL-CS/releases/download/20151227/OpenAL-CS.dll", $target)
|
||||
}
|
||||
|
||||
if (!(Test-Path "Eluant.dll"))
|
||||
{
|
||||
echo "Fetching Eluant from GitHub."
|
||||
|
||||
6
thirdparty/fetch-thirdparty-deps.sh
vendored
6
thirdparty/fetch-thirdparty-deps.sh
vendored
@@ -107,6 +107,12 @@ if [ ! -f SDL2-CS.dll ]; then
|
||||
curl -s -L -O https://github.com/OpenRA/SDL2-CS/releases/download/20150709/SDL2-CS.dll
|
||||
fi
|
||||
|
||||
if [ ! -f OpenAL-CS.dll -o ! -f OpenAL-CS.dll.config ]; then
|
||||
echo "Fetching OpenAL-CS from GitHub."
|
||||
curl -s -L -O https://github.com/OpenRA/OpenAL-CS/releases/download/20151227/OpenAL-CS.dll
|
||||
curl -s -L -O https://github.com/OpenRA/OpenAL-CS/releases/download/20151227/OpenAL-CS.dll.config
|
||||
fi
|
||||
|
||||
if [ ! -f Eluant.dll ]; then
|
||||
echo "Fetching Eluant from GitHub."
|
||||
curl -s -L -O https://github.com/OpenRA/Eluant/releases/download/20151127/Eluant.dll
|
||||
|
||||
Reference in New Issue
Block a user