diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-10-27 10:56:59 -0400 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-10-27 10:56:59 -0400 |
commit | 0883d98e96865c2ddaad70d6d3a6a72debc917e1 (patch) | |
tree | 6c02316ffdc6bb450ec554c7136c720ed3bed669 | |
parent | 7211ed1bfe501ffd16cdcdc511896e93fd3cbda0 (diff) | |
parent | 6cd9de4f978835d42c89a78ce2058a5d2be4c0ff (diff) | |
download | qtlocation-mapboxgl-0883d98e96865c2ddaad70d6d3a6a72debc917e1.tar.gz |
build all architectures in Release mode
-rw-r--r-- | gyp/mbgl-ios.gypi | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gyp/mbgl-ios.gypi b/gyp/mbgl-ios.gypi index e6fa50bd5a..dbad60086c 100644 --- a/gyp/mbgl-ios.gypi +++ b/gyp/mbgl-ios.gypi @@ -13,7 +13,14 @@ 'CLANG_ENABLE_OBJC_ARC': 'YES', 'CODE_SIGN_IDENTITY': 'iPhone Developer', 'PUBLIC_HEADERS_FOLDER_PATH': 'include', - } + }, + 'configurations': { + 'Release': { + 'xcode_settings': { + 'ARCHS': [ "armv7", "armv7s", "arm64", "i386", "x86_64" ], + }, + }, + }, }], ], }, |