blob: b0123a5b86ea18b8348137f279f8ef034f859928 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
release:
xcodebuild -scheme 'Word Count' -configuration Release
clean-release:
xcodebuild -project 'Word Count.xcodeproj' \
-configuration Release \
clean
archive: clean-release release
xcodebuild -project 'Word Count.xcodeproj' \
-scheme 'Word Count' \
-configuration Release \
archive \
-archivePath build/Release.xcarchive
xcodebuild \
-exportArchive \
-archivePath build/Release.xcarchive \
-exportOptionsPlist export-options.plist \
-exportPath build
zip: archive
cd build; \
zip -r 'Word Count.zip' 'Word Count.app'
|