Browse Source

script to automate osx packaging

stopiccot 11 years ago
parent
commit
ae55532131
1 changed files with 15 additions and 0 deletions
  1. 15 0
      osx/package.sh

+ 15 - 0
osx/package.sh

@@ -0,0 +1,15 @@
+# Clean previous build
+rm -rf build
+rm -rf bin
+rm -rf osx/osx-vcmibuilder/build
+rm -rf osx/vcmibuilder.app
+
+# Build vcmibuilder
+xcodebuild -project osx/osx-vcmibuilder/vcmibuilder.xcodeproj/ -configuration Release
+mv osx/osx-vcmibuilder/build/Release/vcmibuilder.app osx/vcmibuilder.app
+
+# Build vcmi
+mkdir build
+cd build
+cmake -G Xcode .. -DENABLE_LAUNCHER=OFF
+xcodebuild -project vcmi.xcodeproj/ -configuration Release -target package