diff options
author | Brad King <brad.king@kitware.com> | 2013-03-28 14:43:02 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-03-28 14:43:02 (GMT) |
commit | 4ce263288aeb1e32f4942045be7cbc92b7daa6b8 (patch) | |
tree | 57be67b1e00e78ea741a9229209eff3e016d61bc /Tests/RunCMake | |
parent | 2afcbe3090d73a7d5c81a726cb9be0efaedb858c (diff) | |
parent | 535e53c7ccbed7f7218caf3955dac93d40af0c38 (diff) | |
download | CMake-4ce263288aeb1e32f4942045be7cbc92b7daa6b8.zip CMake-4ce263288aeb1e32f4942045be7cbc92b7daa6b8.tar.gz CMake-4ce263288aeb1e32f4942045be7cbc92b7daa6b8.tar.bz2 |
Merge topic 'fix-Qt5-incompatibility-check-version'
535e53c Fix the Qt 5 version required to run the IncompatibleQt test.
Diffstat (limited to 'Tests/RunCMake')
-rw-r--r-- | Tests/RunCMake/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt index 7f9b9fd..a3c9605 100644 --- a/Tests/RunCMake/CMakeLists.txt +++ b/Tests/RunCMake/CMakeLists.txt @@ -77,7 +77,7 @@ add_RunCMake_test(CMP0004) find_package(Qt4 QUIET) find_package(Qt5Core QUIET) -if (QT4_FOUND AND Qt5Core_FOUND AND Qt5Core_VERSION VERSION_GREATER 5.0.2) +if (QT4_FOUND AND Qt5Core_FOUND AND NOT Qt5Core_VERSION VERSION_LESS 5.1.0) add_RunCMake_test(IncompatibleQt) endif() |