mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-12 20:39:49 -05: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.
11 lines
345 B
CMake
11 lines
345 B
CMake
enable_language(CXX)
|
|
add_subdirectory(BadSelfReference1)
|
|
add_subdirectory(BadSelfReference2)
|
|
add_subdirectory(BadSelfReference3)
|
|
add_subdirectory(BadSelfReference4)
|
|
add_subdirectory(BadSelfReference5)
|
|
add_subdirectory(BadSelfReference6)
|
|
|
|
# Suppress generator-specific targets that might pollute the stderr.
|
|
set(CMAKE_SUPPRESS_REGENERATION TRUE)
|