fetch OpenAL Soft from Nuget on Windows

This commit is contained in:
Matthias Mailänder
2015-02-15 11:33:05 +01:00
parent 4b70005d49
commit 6626df468c
4 changed files with 19 additions and 0 deletions

View File

@@ -97,3 +97,11 @@ if (!(Test-Path "windows/zlib1.dll"))
cp zlib.redist.1.2.8.7/build/native/bin/v120/Win32/Release/dynamic/stdcall/zlib.dll windows/zlib1.dll
rmdir zlib.redist.1.2.8.7 -Recurse
}
if (!(Test-Path "windows/soft_oal.dll"))
{
echo "Fetching OpenAL Soft from NuGet."
./nuget.exe install OpenAL-Soft -Version 1.16.0
cp OpenAL-Soft.1.16.0/bin/Win32/soft_oal.dll windows/soft_oal.dll
rmdir OpenAL-Soft.1.16.0 -Recurse
}