summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@mapbox.com>2019-05-03 10:45:11 -0400
committerGitHub <noreply@github.com>2019-05-03 10:45:11 -0400
commit359f2bb743c91406b054ce1af5c98b1a242f4e86 (patch)
tree49b687e1cc430231fab79077fb2fda87fcd35e97
parent8a3d07fcd83d01415b672dd5f45a5e08af7d5594 (diff)
downloadqtlocation-mapboxgl-359f2bb743c91406b054ce1af5c98b1a242f4e86.tar.gz
[ios] Uppercase'd "string" to remove cmake warning (#14576)
-rw-r--r--platform/ios/toolchain.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/ios/toolchain.cmake b/platform/ios/toolchain.cmake
index 512b46b6d9..8299d624d0 100644
--- a/platform/ios/toolchain.cmake
+++ b/platform/ios/toolchain.cmake
@@ -89,14 +89,14 @@ set (CMAKE_FIND_LIBRARY_SUFFIXES ".dylib" ".so" ".a")
# Point to the latest SDK.
-set (CMAKE_OSX_SYSROOT "iphoneos" CACHE string "Sysroot used for iOS support")
+set (CMAKE_OSX_SYSROOT "iphoneos" CACHE STRING "Sysroot used for iOS support")
-set (CMAKE_OSX_ARCHITECTURES "$(ARCHS_STANDARD)" CACHE string "Build architecture for iOS")
+set (CMAKE_OSX_ARCHITECTURES "$(ARCHS_STANDARD)" CACHE STRING "Build architecture for iOS")
# Set the find root to the iOS developer roots and to user defined paths
-set (CMAKE_FIND_ROOT_PATH ${CMAKE_IOS_DEVELOPER_ROOT} ${CMAKE_IOS_SDK_ROOT} ${CMAKE_PREFIX_PATH} CACHE string "iOS find search path root")
+set (CMAKE_FIND_ROOT_PATH ${CMAKE_IOS_DEVELOPER_ROOT} ${CMAKE_IOS_SDK_ROOT} ${CMAKE_PREFIX_PATH} CACHE STRING "iOS find search path root")
# default to searching for frameworks first
set (CMAKE_FIND_FRAMEWORK FIRST)