diff options
author | Brad King <brad.king@kitware.com> | 2024-10-03 13:18:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-10-03 18:18:16 (GMT) |
commit | 9e3b559b6a30b8b5734849fc21a9cea1b0e2874f (patch) | |
tree | edc4eca1f905ba8fffc073e5e68eac02cfc25e55 /Tests/Complex/Executable | |
parent | f4aa34daa724cf80dd407d14cd5a091b6e390c62 (diff) | |
download | CMake-9e3b559b6a30b8b5734849fc21a9cea1b0e2874f.zip CMake-9e3b559b6a30b8b5734849fc21a9cea1b0e2874f.tar.gz CMake-9e3b559b6a30b8b5734849fc21a9cea1b0e2874f.tar.bz2 |
Tests: Update cmake_minimum_required versions to 3.10
Diffstat (limited to 'Tests/Complex/Executable')
-rw-r--r-- | Tests/Complex/Executable/complex.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Complex/Executable/complex.cxx b/Tests/Complex/Executable/complex.cxx index 67a1645..50f9932 100644 --- a/Tests/Complex/Executable/complex.cxx +++ b/Tests/Complex/Executable/complex.cxx @@ -990,8 +990,8 @@ int main() # endif #endif // defined(_WIN32) && !defined(__CYGWIN__) - if (strcmp(CMAKE_MINIMUM_REQUIRED_VERSION, "2.4") == 0) { - cmPassed("CMAKE_MINIMUM_REQUIRED_VERSION is set to 2.4"); + if (strcmp(CMAKE_MINIMUM_REQUIRED_VERSION, "3.10") == 0) { + cmPassed("CMAKE_MINIMUM_REQUIRED_VERSION is set to 3.10"); } else { cmFailed("CMAKE_MINIMUM_REQUIRED_VERSION is not set to the expected 2.4"); } |