diff options
-rwxr-xr-x | platform/ios/scripts/package.sh | 12 |
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 |