From 74d0b1b1b914268700bee95b76f31b2d02b0c82a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20K=C3=B6hne?= Date: Tue, 3 Aug 2021 17:02:33 +0200 Subject: [PATCH] CMake: Add whitespace to Android error message Pick-to: 6.2 Change-Id: I9c7729a7bef4a659b10fe69a73b30f101cbba546 Reviewed-by: Alexandru Croitor --- src/corelib/Qt6AndroidMacros.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/corelib/Qt6AndroidMacros.cmake b/src/corelib/Qt6AndroidMacros.cmake index e37ce287bdd..55e2ac1a802 100644 --- a/src/corelib/Qt6AndroidMacros.cmake +++ b/src/corelib/Qt6AndroidMacros.cmake @@ -53,9 +53,9 @@ function(qt6_android_generate_deployment_settings target) file(GLOB plugin_dir_files LIST_DIRECTORIES FALSE "${glob_expression}") if (NOT plugin_dir_files) message(SEND_ERROR - "Detected Qt installation does not contain qtforandroid_${CMAKE_ANDROID_ARCH_ABI}.so in the following dir:" - "${android_plugin_dir_path}" - "This is most likely due to the installation not being a Qt for Android build." + "Detected Qt installation does not contain qtforandroid_${CMAKE_ANDROID_ARCH_ABI}.so in the following dir:\n" + "${android_plugin_dir_path}\n" + "This is most likely due to the installation not being a Qt for Android build. " "Please recheck your build configuration.") return() else()