Merge pull request #7346 from Mailaender/windows-dependencies
Added all native Windows dependencies to the fetch script
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -39,6 +39,8 @@ thirdparty/nunit*
|
|||||||
thirdparty/windows/SDL2.dll
|
thirdparty/windows/SDL2.dll
|
||||||
thirdparty/Mono.Nat.dll
|
thirdparty/Mono.Nat.dll
|
||||||
thirdparty/nuget.exe
|
thirdparty/nuget.exe
|
||||||
|
thirdparty/windows/lua51.dll
|
||||||
|
thirdparty/windows/zlib1.dll
|
||||||
|
|
||||||
# backup files by various editors
|
# backup files by various editors
|
||||||
*~
|
*~
|
||||||
|
|||||||
3
Makefile
3
Makefile
@@ -310,6 +310,9 @@ distclean: clean
|
|||||||
|
|
||||||
dependencies: cli-dependencies native-dependencies
|
dependencies: cli-dependencies native-dependencies
|
||||||
|
|
||||||
|
windows-dependencies:
|
||||||
|
cd thirdparty && ./fetch-thirdparty-deps-windows.sh && cd ..
|
||||||
|
|
||||||
cli-dependencies:
|
cli-dependencies:
|
||||||
cd thirdparty && ./fetch-thirdparty-deps.sh && cd ..
|
cd thirdparty && ./fetch-thirdparty-deps.sh && cd ..
|
||||||
@ $(CP_R) thirdparty/*.dll .
|
@ $(CP_R) thirdparty/*.dll .
|
||||||
|
|||||||
33
thirdparty/fetch-thirdparty-deps-windows.sh
vendored
Executable file
33
thirdparty/fetch-thirdparty-deps-windows.sh
vendored
Executable file
@@ -0,0 +1,33 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Die on any error for Travis CI to automatically retry:
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ ! -f windows/SDL2.dll ]; then
|
||||||
|
echo "Fetching SDL2 from nuget"
|
||||||
|
nuget install sdl2 -Version 2.0.3
|
||||||
|
cp ./sdl2.redist.2.0.3/build/native/bin/Win32/dynamic/SDL2.dll ./windows/
|
||||||
|
rm -rf sdl2.2.0.3 sdl2.redist.2.0.3
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f windows/freetype6.dll ]; then
|
||||||
|
echo "Fetching SharpFont from nuget"
|
||||||
|
nuget install SharpFont -Version 2.5.0.1
|
||||||
|
cp ./SharpFont.2.5.0.1/Content/freetype6.dll ./windows/
|
||||||
|
rm -rf SharpFont.2.5.0.1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f windows/lua51.dll ]; then
|
||||||
|
echo "Fetching Lua 5.1 from nuget"
|
||||||
|
nuget install lua51.redist -Version 5.1.5
|
||||||
|
cp ./lua51.redist.5.1.5/build/native/bin/Win32/v120/Release/lua5.1.dll ./windows/lua51.dll
|
||||||
|
rm -rf lua51.redist.5.1.5
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f windows/zlib1.dll ]; then
|
||||||
|
echo "Fetching ZLib from nuget"
|
||||||
|
nuget install zlib.redist -Version 1.2.8.7
|
||||||
|
cp ./zlib.redist.1.2.8.7/build/native/bin/v120/Win32/Release/dynamic/stdcall/zlib.dll windows/zlib1.dll
|
||||||
|
rm -rf zlib.redist.1.2.8.7
|
||||||
|
fi
|
||||||
|
|
||||||
22
thirdparty/fetch-thirdparty-deps.ps1
vendored
22
thirdparty/fetch-thirdparty-deps.ps1
vendored
@@ -1,3 +1,5 @@
|
|||||||
|
mkdir windows -Force >$null
|
||||||
|
|
||||||
if (!(Test-Path "nuget.exe"))
|
if (!(Test-Path "nuget.exe"))
|
||||||
{
|
{
|
||||||
echo "Fetching NuGet."
|
echo "Fetching NuGet."
|
||||||
@@ -69,5 +71,21 @@ if (!(Test-Path "Mono.Nat.dll"))
|
|||||||
echo "Fetching Mono.Nat from NuGet."
|
echo "Fetching Mono.Nat from NuGet."
|
||||||
./nuget.exe install Mono.Nat -Version 1.2.21
|
./nuget.exe install Mono.Nat -Version 1.2.21
|
||||||
cp Mono.Nat.1.2.21.0/lib/net40/Mono.Nat.dll .
|
cp Mono.Nat.1.2.21.0/lib/net40/Mono.Nat.dll .
|
||||||
rmdir Mono.Nat.1.2.21.0 -Recurse
|
rmdir Mono.Nat.1.2.21.0 -Recurse
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!(Test-Path "windows/lua51.dll"))
|
||||||
|
{
|
||||||
|
echo "Fetching Lua 5.1 from NuGet."
|
||||||
|
./nuget.exe install lua51.redist -Version 5.1.5
|
||||||
|
cp lua51.redist.5.1.5/build/native/bin/Win32/v120/Release/lua5.1.dll ./windows/lua51.dll
|
||||||
|
rmdir lua51.redist.5.1.5 -Recurse
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(Test-Path "windows/zlib1.dll"))
|
||||||
|
{
|
||||||
|
echo "Fetching ZLib from NuGet."
|
||||||
|
./nuget.exe install zlib.redist -Version 1.2.8.7
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|||||||
8
thirdparty/fetch-thirdparty-deps.sh
vendored
8
thirdparty/fetch-thirdparty-deps.sh
vendored
@@ -35,7 +35,6 @@ if [ ! -f SharpFont.dll ]; then
|
|||||||
nuget install SharpFont -Version 2.5.0.1
|
nuget install SharpFont -Version 2.5.0.1
|
||||||
cp ./SharpFont.2.5.0.1/lib/net20/SharpFont* .
|
cp ./SharpFont.2.5.0.1/lib/net20/SharpFont* .
|
||||||
cp ./SharpFont.2.5.0.1/Content/SharpFont.dll.config .
|
cp ./SharpFont.2.5.0.1/Content/SharpFont.dll.config .
|
||||||
cp ./SharpFont.2.5.0.1/Content/freetype6.dll ./windows/
|
|
||||||
rm -rf SharpFont.2.5.0.1
|
rm -rf SharpFont.2.5.0.1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -46,13 +45,6 @@ if [ ! -f nunit.framework.dll ]; then
|
|||||||
rm -rf NUnit.2.6.4
|
rm -rf NUnit.2.6.4
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f windows/SDL2.dll ]; then
|
|
||||||
echo "Fetching SDL2 from nuget"
|
|
||||||
nuget install sdl2 -Version 2.0.3
|
|
||||||
cp ./sdl2.redist.2.0.3/build/native/bin/Win32/dynamic/SDL2.dll ./windows/
|
|
||||||
rm -rf sdl2.2.0.3 sdl2.redist.2.0.3
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f Mono.Nat.dll ]; then
|
if [ ! -f Mono.Nat.dll ]; then
|
||||||
echo "Fetching Mono.Nat from nuget"
|
echo "Fetching Mono.Nat from nuget"
|
||||||
nuget install Mono.Nat -Version 1.2.21
|
nuget install Mono.Nat -Version 1.2.21
|
||||||
|
|||||||
BIN
thirdparty/windows/lua51.dll
vendored
BIN
thirdparty/windows/lua51.dll
vendored
Binary file not shown.
BIN
thirdparty/windows/zlib1.dll
vendored
BIN
thirdparty/windows/zlib1.dll
vendored
Binary file not shown.
Reference in New Issue
Block a user