summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-04-05 13:24:22 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-04-05 15:03:05 -0700
commit08d12f860e3eeac810cbb9355eb168fc8de38ce2 (patch)
treef9e13daba79150608e66e6f93937669260dcae82
parent5832825427dbf2ba27639f4e009b50062687b488 (diff)
downloadqtlocation-mapboxgl-08d12f860e3eeac810cbb9355eb168fc8de38ce2.tar.gz
[ios] Fix make ipackage
-rwxr-xr-xplatform/ios/scripts/package.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/platform/ios/scripts/package.sh b/platform/ios/scripts/package.sh
index af03f02d80..b0f63478df 100755
--- a/platform/ios/scripts/package.sh
+++ b/platform/ios/scripts/package.sh
@@ -93,7 +93,11 @@ if [[ "${BUILD_FOR_DEVICE}" == true ]]; then
CODE_SIGN_IDENTITY= \
-project ./build/ios-all/gyp/mbgl.xcodeproj \
-configuration ${BUILDTYPE} \
- -target everything \
+ -target core \
+ -target platform-ios \
+ -target http-nsurl \
+ -target asset-fs \
+ -target headless-eagl \
-jobs ${JOBS}
fi
@@ -123,7 +127,11 @@ if [[ ${BUILD_STATIC} == true ]]; then
GCC_GENERATE_DEBUGGING_SYMBOLS=${GCC_GENERATE_DEBUGGING_SYMBOLS} \
-project ./build/ios-all/gyp/mbgl.xcodeproj \
-configuration ${BUILDTYPE} \
- -target everything \
+ -target core \
+ -target platform-ios \
+ -target http-nsurl \
+ -target asset-fs \
+ -target headless-eagl \
-jobs ${JOBS}
fi