diff options
author | Brad King <brad.king@kitware.com> | 2024-05-06 16:40:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2024-05-08 14:37:34 (GMT) |
commit | 03c31b0395eaabbfd76d255f85d50b1df1437aef (patch) | |
tree | 064c3d5fd7598b3cbd71e57115d81126feb54922 /Tests/CMakeOnly | |
parent | 88c70dde34e76b79111adecc31493e9222e96e9c (diff) | |
download | CMake-03c31b0395eaabbfd76d255f85d50b1df1437aef.zip CMake-03c31b0395eaabbfd76d255f85d50b1df1437aef.tar.gz CMake-03c31b0395eaabbfd76d255f85d50b1df1437aef.tar.bz2 |
Drop Visual Studio 9 2008 generator
This generator has been deprecated since CMake 3.27. Remove it.
Diffstat (limited to 'Tests/CMakeOnly')
-rw-r--r-- | Tests/CMakeOnly/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeOnly/CMakeLists.txt b/Tests/CMakeOnly/CMakeLists.txt index ea06464..727c7fc 100644 --- a/Tests/CMakeOnly/CMakeLists.txt +++ b/Tests/CMakeOnly/CMakeLists.txt @@ -54,7 +54,7 @@ if(CMAKE_Fortran_COMPILER) add_CMakeOnly_test(CompilerIdFortran) set_property(TEST CMakeOnly.CompilerIdFortran APPEND PROPERTY LABELS "Fortran") endif() -if(CMAKE_GENERATOR MATCHES "Visual Studio ([^9]|9[0-9])") +if(CMAKE_GENERATOR MATCHES "Visual Studio") add_CMakeOnly_test(CompilerIdCSharp) endif() |