1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-02 00:10:22 +02:00

make download_dependencies.sh also build vcmibuilder

This commit is contained in:
stopiccot 2014-05-02 17:02:55 +03:00
parent 9996013946
commit 667cc3b067

View File

@ -2,7 +2,13 @@ if [ -f ../.osx_dependencies_installed ];
then
echo "OS X prebuilt dependencies are already installled"
else
# Download and unpack OS X prebuilt dependencies
curl -o ../xcode-pack.zip -L http://download.vcmi.eu/xcode-pack.zip
unzip ../xcode-pack.zip -d ../
# Build vcmibuilder
xcodebuild -project osx/osx-vcmibuilder/vcmibuilder.xcodeproj/ -configuration Release
mv osx/osx-vcmibuilder/build/Release/vcmibuilder.app osx/vcmibuilder.app
touch ../.osx_dependencies_installed
fi