fetch Eluant from GitHub
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -45,6 +45,7 @@ thirdparty/windows/zlib1.dll
|
|||||||
thirdparty/windows/soft_oal.dll
|
thirdparty/windows/soft_oal.dll
|
||||||
thirdparty/FuzzyLogicLibrary.dll
|
thirdparty/FuzzyLogicLibrary.dll
|
||||||
thirdparty/SDL2-CS.dll
|
thirdparty/SDL2-CS.dll
|
||||||
|
thirdparty/Eluant.dll
|
||||||
|
|
||||||
# backup files by various editors
|
# backup files by various editors
|
||||||
*~
|
*~
|
||||||
|
|||||||
BIN
thirdparty/Eluant.dll
vendored
BIN
thirdparty/Eluant.dll
vendored
Binary file not shown.
7
thirdparty/fetch-thirdparty-deps.ps1
vendored
7
thirdparty/fetch-thirdparty-deps.ps1
vendored
@@ -128,3 +128,10 @@ if (!(Test-Path "SDL2-CS.dll"))
|
|||||||
$target = Join-Path $pwd.ToString() "SDL2-CS.dll"
|
$target = Join-Path $pwd.ToString() "SDL2-CS.dll"
|
||||||
(New-Object System.Net.WebClient).DownloadFile("https://github.com/OpenRA/SDL2-CS/releases/download/20140407/SDL2-CS.dll", $target)
|
(New-Object System.Net.WebClient).DownloadFile("https://github.com/OpenRA/SDL2-CS/releases/download/20140407/SDL2-CS.dll", $target)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!(Test-Path "Eluant.dll"))
|
||||||
|
{
|
||||||
|
echo "Fetching Eluant from GitHub."
|
||||||
|
$target = Join-Path $pwd.ToString() "Eluant.dll"
|
||||||
|
(New-Object System.Net.WebClient).DownloadFile("https://github.com/OpenRA/Eluant/releases/download/20140425/Eluant.dll", $target)
|
||||||
|
}
|
||||||
|
|||||||
5
thirdparty/fetch-thirdparty-deps.sh
vendored
5
thirdparty/fetch-thirdparty-deps.sh
vendored
@@ -77,3 +77,8 @@ if [ ! -f SDL2-CS.dll ]; then
|
|||||||
echo "Fetching SDL2-CS from GitHub."
|
echo "Fetching SDL2-CS from GitHub."
|
||||||
wget https://github.com/OpenRA/SDL2-CS/releases/download/20140407/SDL2-CS.dll
|
wget https://github.com/OpenRA/SDL2-CS/releases/download/20140407/SDL2-CS.dll
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ ! -f Eluant.dll ]; then
|
||||||
|
echo "Fetching Eluant from GitHub."
|
||||||
|
wget https://github.com/OpenRA/Eluant/releases/download/20140425/Eluant.dll
|
||||||
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user