summaryrefslogtreecommitdiff
path: root/platform/ios/scripts/package.sh
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-04-11 16:45:14 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-04-11 16:45:14 -0700
commitbe47e35a975ff7c43755e8c3898512147bb37904 (patch)
tree3c11260b6283cac201e283c859de18bbcf4005a3 /platform/ios/scripts/package.sh
parentc1a38b66e56de7cc1915b4b77a3b6513acbba8eb (diff)
downloadqtlocation-mapboxgl-be47e35a975ff7c43755e8c3898512147bb37904.tar.gz
[ios, osx] The return of xcpretty, part II (#4676)
Diffstat (limited to 'platform/ios/scripts/package.sh')
-rwxr-xr-xplatform/ios/scripts/package.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/ios/scripts/package.sh b/platform/ios/scripts/package.sh
index 02a454aaf7..3769552994 100755
--- a/platform/ios/scripts/package.sh
+++ b/platform/ios/scripts/package.sh
@@ -88,7 +88,7 @@ if [[ "${BUILD_FOR_DEVICE}" == true ]]; then
-project ./build/ios-all/platform/ios/platform.xcodeproj \
-configuration ${BUILDTYPE} \
-target platform-lib \
- -jobs ${JOBS}
+ -jobs ${JOBS} | xcpretty
fi
if [[ ${BUILD_DYNAMIC} == true ]]; then
@@ -105,7 +105,7 @@ if [[ "${BUILD_FOR_DEVICE}" == true ]]; then
-project ./build/ios-all/platform/ios/platform.xcodeproj \
-configuration ${BUILDTYPE} \
-target iossdk \
- -jobs ${JOBS}
+ -jobs ${JOBS} | xcpretty
fi
fi
@@ -118,7 +118,7 @@ if [[ ${BUILD_STATIC} == true ]]; then
-project ./build/ios-all/platform/ios/platform.xcodeproj \
-configuration ${BUILDTYPE} \
-target platform-lib \
- -jobs ${JOBS}
+ -jobs ${JOBS} | xcpretty
fi
if [[ ${BUILD_DYNAMIC} == true ]]; then
@@ -132,7 +132,7 @@ if [[ ${BUILD_DYNAMIC} == true ]]; then
-project ./build/ios-all/platform/ios/platform.xcodeproj \
-configuration ${BUILDTYPE} \
-target iossdk \
- -jobs ${JOBS}
+ -jobs ${JOBS} | xcpretty
fi
LIBS=(core.a platform-ios.a)