Quellcode durchsuchen

script to automate osx packaging

stopiccot vor 11 Jahren
Ursprung
Commit
ae55532131
1 geänderte Dateien mit 15 neuen und 0 gelöschten Zeilen
  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