mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-23 14:48:19 -05:00
a4d0e4ff8f
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)
|