mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
The existing cases all need to enable a language. Move this out of the `CMakeLists.txt` file and into the individual cases to make room for other cases that may not need this.
13 lines
401 B
CMake
13 lines
401 B
CMake
enable_language(CXX)
|
|
add_subdirectory(BadInvalidName1)
|
|
add_subdirectory(BadInvalidName2)
|
|
add_subdirectory(BadInvalidName3)
|
|
add_subdirectory(BadInvalidName4)
|
|
add_subdirectory(BadInvalidName5)
|
|
add_subdirectory(BadInvalidName6)
|
|
add_subdirectory(BadInvalidName7)
|
|
add_subdirectory(BadInvalidName8)
|
|
|
|
# Suppress generator-specific targets that might pollute the stderr.
|
|
set(CMAKE_SUPPRESS_REGENERATION TRUE)
|