summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-02-17 15:57:06 (GMT)
committerBrad King <brad.king@kitware.com>2022-02-17 16:00:25 (GMT)
commit5bfff3c750762a2f8f8499279ed57f4729a188ab (patch)
treef38a2e0f3e419bfd87cb07df81ab1d4348d91a3e /Tests
parent35967588116e96ea048c831fc2eae0a8c2061926 (diff)
downloadCMake-5bfff3c750762a2f8f8499279ed57f4729a188ab.zip
CMake-5bfff3c750762a2f8f8499279ed57f4729a188ab.tar.gz
CMake-5bfff3c750762a2f8f8499279ed57f4729a188ab.tar.bz2
Tests: Add missing guards on Qt4 and Qt5 tests
Add missing `CMake_TEST_Qt{4,5}` conditions on Qt4 an Qt5 tests. Configuring CMake with `-DCMake_TEST_Qt5=OFF` should prevent any attempt to search for Qt5. Fixes: #23239
Diffstat (limited to 'Tests')
-rw-r--r--Tests/RunCMake/CMakeLists.txt12
1 files changed, 8 insertions, 4 deletions
diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt
index e24ef58..e8fb13f 100644
--- a/Tests/RunCMake/CMakeLists.txt
+++ b/Tests/RunCMake/CMakeLists.txt
@@ -580,12 +580,16 @@ if(NOT WIN32
add_RunCMake_test(SymlinkTrees)
endif ()
-find_package(Qt4 QUIET)
-find_package(Qt5Core QUIET)
-if (QT4_FOUND AND Qt5Core_FOUND AND NOT Qt5Core_VERSION VERSION_LESS 5.1.0)
+if(CMake_TEST_Qt4)
+ find_package(Qt4 QUIET)
+endif()
+if(CMake_TEST_Qt5)
+ find_package(Qt5Core QUIET)
+endif()
+if (CMake_TEST_Qt4 AND CMake_TEST_Qt5 AND QT4_FOUND AND Qt5Core_FOUND AND NOT Qt5Core_VERSION VERSION_LESS 5.1.0)
add_RunCMake_test(IncompatibleQt)
endif()
-if (QT4_FOUND)
+if (CMake_TEST_Qt4 AND QT4_FOUND)
add_RunCMake_test(ObsoleteQtMacros -DQT_QMAKE_EXECUTABLE:FILEPATH=${QT_QMAKE_EXECUTABLE})
endif()