forked from jessesquires/JSQSystemSoundPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·30 lines (26 loc) · 721 Bytes
/
build.sh
File metadata and controls
executable file
·30 lines (26 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
xctool \
-project Example/Example.xcodeproj \
-scheme Example-iOS \
-sdk iphonesimulator \
ONLY_ACTIVE_ARCH=NO \
clean build
xctool \
-project Example/Example.xcodeproj \
-scheme Example-OSX \
ONLY_ACTIVE_ARCH=NO \
clean build
xctool \
-project JSQSystemSoundPlayer/JSQSystemSoundPlayer.xcodeproj \
-scheme JSQSystemSoundPlayer-OSX \
-sdk iphonesimulator \
ONLY_ACTIVE_ARCH=NO \
clean build
xcodebuild \
-project JSQSystemSoundPlayer/JSQSystemSoundPlayer.xcodeproj \
-scheme JSQSystemSoundPlayer-iOS \
-sdk iphonesimulator \
ONLY_ACTIVE_ARCH=NO \
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES \
GCC_GENERATE_TEST_COVERAGE_FILES=YES \
clean build test