diff options
author | Fabian Guerra Soto <fabian.guerra@mapbox.com> | 2019-10-18 13:59:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-18 13:59:04 -0700 |
commit | bbeb86577eea34d6241f0e70119f91f208cd7a12 (patch) | |
tree | 913f1b214c5ffcc7437056a81df97694579560ce | |
parent | 722a0c2f616e4094996c39c42335dc47e1c1f87a (diff) | |
download | qtlocation-mapboxgl-bbeb86577eea34d6241f0e70119f91f208cd7a12.tar.gz |
[ios] Add ARC config to the new build system. (#15833)
-rw-r--r-- | next/platform/ios/ios.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/next/platform/ios/ios.cmake b/next/platform/ios/ios.cmake index 7a729d996a..135a637783 100644 --- a/next/platform/ios/ios.cmake +++ b/next/platform/ios/ios.cmake @@ -3,6 +3,8 @@ target_compile_definitions( PUBLIC MBGL_USE_GLES2 GLES_SILENCE_DEPRECATION ) +set_target_properties(mbgl-core PROPERTIES XCODE_ATTRIBUTE_CLANG_ENABLE_OBJC_ARC YES) + target_sources( mbgl-core PRIVATE |