CMake: Add whitespace to Android error message

Pick-to: 6.2
Change-Id: I9c7729a7bef4a659b10fe69a73b30f101cbba546
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Kai Köhne 2021-08-03 17:02:33 +02:00
parent 5674610d3f
commit 74d0b1b1b9

View File

@ -53,9 +53,9 @@ function(qt6_android_generate_deployment_settings target)
file(GLOB plugin_dir_files LIST_DIRECTORIES FALSE "${glob_expression}") file(GLOB plugin_dir_files LIST_DIRECTORIES FALSE "${glob_expression}")
if (NOT plugin_dir_files) if (NOT plugin_dir_files)
message(SEND_ERROR message(SEND_ERROR
"Detected Qt installation does not contain qtforandroid_${CMAKE_ANDROID_ARCH_ABI}.so in the following dir:" "Detected Qt installation does not contain qtforandroid_${CMAKE_ANDROID_ARCH_ABI}.so in the following dir:\n"
"${android_plugin_dir_path}" "${android_plugin_dir_path}\n"
"This is most likely due to the installation not being a Qt for Android build." "This is most likely due to the installation not being a Qt for Android build. "
"Please recheck your build configuration.") "Please recheck your build configuration.")
return() return()
else() else()