fetch Lua 5.1 from nuget.org

This commit is contained in:
Matthias Mailänder
2015-01-17 14:26:43 +01:00
parent 23380c6df6
commit 9cae84d29d
4 changed files with 20 additions and 3 deletions

View File

@@ -15,4 +15,12 @@ if [ ! -f windows/freetype6.dll ]; then
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
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