summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wray <jason@mapbox.com>2018-10-24 15:57:41 -0400
committerJason Wray <friedbunny@users.noreply.github.com>2018-10-26 13:25:22 -0400
commitadd7e3b9f3e8e107ba52fe5e832171e8b639ad24 (patch)
tree30f49b62f39df57ac084ceb9f72031d3656be534
parentc5583af7436b652b056806ac8e3980def68ece40 (diff)
downloadqtlocation-mapboxgl-add7e3b9f3e8e107ba52fe5e832171e8b639ad24.tar.gz
[darwin, build] Fix RelWithDebInfo name in cmake Xcode config
-rw-r--r--cmake/mbgl.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/mbgl.cmake b/cmake/mbgl.cmake
index 9f27b16bdb..97517fb9c5 100644
--- a/cmake/mbgl.cmake
+++ b/cmake/mbgl.cmake
@@ -209,7 +209,7 @@ function(initialize_xcode_cxx_build_settings target)
set_xcode_property(${target} CLANG_WARN_RANGE_LOOP_ANALYSIS YES)
# -flto
- set_xcode_property(${target} LLVM_LTO $<$<OR:$<CONFIG:Release>,$<CONFIG:RelWithDebugInfo>>:YES>)
+ set_xcode_property(${target} LLVM_LTO $<$<OR:$<CONFIG:Release>,$<CONFIG:RelWithDebInfo>>:YES>)
# Make releases debuggable.
set_xcode_property(${target} GCC_GENERATE_DEBUGGING_SYMBOLS YES)