summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorAmir Masoud Abdol <amirmasoudabdol@icloud.com>2022-10-19 14:51:00 +0200
committerAmir Masoud Abdol <amirmasoudabdol@icloud.com>2022-10-19 19:24:26 +0200
commit71f020b36536edd717ef6d769b12795b7c4f8a69 (patch)
tree14023e9311e9b50cf60a443378fa6208168e481b /cmake
parentb4ad658fa0a65a77961d53c1c6373dc83d1e30ab (diff)
Fix Some Typos
Changed `proviude` to `provide`, and removed an extra space in a `xcrun` command. Change-Id: Iccbf6f87b9f4c86b686a6b1d0723458a1387a7ea Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/QtAutoDetect.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmake/QtAutoDetect.cmake b/cmake/QtAutoDetect.cmake
index 6c46f3b470..c7669dc240 100644
--- a/cmake/QtAutoDetect.cmake
+++ b/cmake/QtAutoDetect.cmake
@@ -217,7 +217,7 @@ function(qt_auto_detect_ios)
set(osx_architectures "x86_64")
else()
if(NOT DEFINED QT_UIKIT_SDK)
- message(FATAL_ERROR "Please proviude a value for -DQT_UIKIT_SDK."
+ message(FATAL_ERROR "Please provide a value for -DQT_UIKIT_SDK."
" Possible values: iphoneos, iphonesimulator.")
else()
message(FATAL_ERROR
@@ -233,7 +233,7 @@ function(qt_auto_detect_ios)
set(osx_architectures "x86_64")
else()
if(NOT DEFINED QT_UIKIT_SDK)
- message(FATAL_ERROR "Please proviude a value for -DQT_UIKIT_SDK."
+ message(FATAL_ERROR "Please provide a value for -DQT_UIKIT_SDK."
" Possible values: appletvos, appletvsimulator.")
else()
message(FATAL_ERROR
@@ -249,7 +249,7 @@ function(qt_auto_detect_ios)
set(osx_architectures "i386")
else()
if(NOT DEFINED QT_UIKIT_SDK)
- message(FATAL_ERROR "Please proviude a value for -DQT_UIKIT_SDK."
+ message(FATAL_ERROR "Please provide a value for -DQT_UIKIT_SDK."
" Possible values: watchos, watchsimulator.")
else()
message(FATAL_ERROR
@@ -335,7 +335,7 @@ endfunction()
function(qt_internal_get_xcode_version out_var)
if(APPLE)
- execute_process(COMMAND /usr/bin/xcrun xcodebuild -version
+ execute_process(COMMAND /usr/bin/xcrun xcodebuild -version
OUTPUT_VARIABLE xcode_version
ERROR_VARIABLE xcrun_error)
string(REPLACE "\n" " " xcode_version "${xcode_version}")