get latest FreeType6 for Windows

downgrade dependency to MSVC++ 2008
This commit is contained in:
Matthias Mailänder
2015-08-07 19:52:40 +02:00
parent 520a32143d
commit 0f9b87269e
2 changed files with 4 additions and 4 deletions

View File

@@ -26,8 +26,8 @@ fi
if [ ! -f freetype6.dll ]; then if [ ! -f freetype6.dll ]; then
echo "Fetching FreeType2 from NuGet" echo "Fetching FreeType2 from NuGet"
get SharpFont.Dependencies 2.5.5.1 get SharpFont.Dependencies 2.6.0
cp ./SharpFont.Dependencies/bin/msvc10/x86/freetype6.dll . cp ./SharpFont.Dependencies/bin/msvc9/x86/freetype6.dll .
rm -rf SharpFont.Dependencies rm -rf SharpFont.Dependencies
fi fi

View File

@@ -95,8 +95,8 @@ if (!(Test-Path "windows/lua51.dll"))
if (!(Test-Path "windows/freetype6.dll")) if (!(Test-Path "windows/freetype6.dll"))
{ {
echo "Fetching FreeType2 from NuGet." echo "Fetching FreeType2 from NuGet."
./nuget.exe install SharpFont.Dependencies -Version 2.5.5.1 -ExcludeVersion ./nuget.exe install SharpFont.Dependencies -Version 2.6.0 -ExcludeVersion
cp SharpFont.Dependencies/bin/msvc10/x86/freetype6.dll ./windows/freetype6.dll cp SharpFont.Dependencies/bin/msvc9/x86/freetype6.dll ./windows/freetype6.dll
rmdir SharpFont.Dependencies -Recurse rmdir SharpFont.Dependencies -Recurse
} }