aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Edelev <alexey.edelev@qt.io>2023-06-09 12:04:39 +0200
committerAlexey Edelev <alexey.edelev@qt.io>2023-06-09 12:26:59 +0200
commit59d82fee02ce2379b245e34d8a8e0709bad5eef3 (patch)
tree613f529d28c36bf859fb8c7b025f3fc45f2795be
parentb55290e402adf281e83b2f3f74d09f04838de7d8 (diff)
Do not require X11 package when building manual tests
It seems that manual tests that depend on X11 can be simply skipped with the respective message in the configuring log. So we shouldn't require X11 to be found. Pick-to: 6.5 6.6 Change-Id: I4525f70238b3e8e66759c875d29c5289069251ad Reviewed-by: Matthias Rauter <matthias.rauter@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
-rw-r--r--tests/manual/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/CMakeLists.txt b/tests/manual/CMakeLists.txt
index 5b49336c..861cd2ec 100644
--- a/tests/manual/CMakeLists.txt
+++ b/tests/manual/CMakeLists.txt
@@ -3,7 +3,7 @@
# Generated from manual.pro.
-find_package(X11 REQUIRED)
+find_package(X11)
if(X11_FOUND)
add_subdirectory(x11vkbwrapper)
add_subdirectory(x11vkbtest)