summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@mapbox.com>2019-05-02 15:03:10 -0400
committerJulian Rex <julian.rex@mapbox.com>2019-05-02 15:03:10 -0400
commit4ba34994303aeb432308e62836c30e2d610a4096 (patch)
tree2a292c89c8d72a3b58f332accb75b7955fa466d7
parentf7915fdc51f4924df2e2630b64908938ffa49830 (diff)
downloadqtlocation-mapboxgl-4ba34994303aeb432308e62836c30e2d610a4096.tar.gz
[ios] Uppercase'd "string" to remove cmake warningupstream/jrex/toolchain-cmake-warnings
-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)