diff --git a/.gitignore b/.gitignore index f66b832fbc..5320644d55 100644 --- a/.gitignore +++ b/.gitignore @@ -45,6 +45,7 @@ thirdparty/windows/zlib1.dll thirdparty/windows/soft_oal.dll thirdparty/FuzzyLogicLibrary.dll thirdparty/SDL2-CS.dll +thirdparty/Eluant.dll # backup files by various editors *~ diff --git a/thirdparty/Eluant.dll b/thirdparty/Eluant.dll deleted file mode 100644 index 2eef902457..0000000000 Binary files a/thirdparty/Eluant.dll and /dev/null differ diff --git a/thirdparty/fetch-thirdparty-deps.ps1 b/thirdparty/fetch-thirdparty-deps.ps1 index 5a0a5de0f9..e0531c83bb 100644 --- a/thirdparty/fetch-thirdparty-deps.ps1 +++ b/thirdparty/fetch-thirdparty-deps.ps1 @@ -128,3 +128,10 @@ if (!(Test-Path "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) } + +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) +} diff --git a/thirdparty/fetch-thirdparty-deps.sh b/thirdparty/fetch-thirdparty-deps.sh index f73771f519..821f5f4a5d 100755 --- a/thirdparty/fetch-thirdparty-deps.sh +++ b/thirdparty/fetch-thirdparty-deps.sh @@ -77,3 +77,8 @@ if [ ! -f SDL2-CS.dll ]; then echo "Fetching SDL2-CS from GitHub." wget https://github.com/OpenRA/SDL2-CS/releases/download/20140407/SDL2-CS.dll fi + +if [ ! -f Eluant.dll ]; then + echo "Fetching Eluant from GitHub." + wget https://github.com/OpenRA/Eluant/releases/download/20140425/Eluant.dll +fi