mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-04 05:10:10 -05:00
6 lines
155 B
CMake
6 lines
155 B
CMake
if(TEST TestThatDoesNotExist)
|
|
message(FATAL_ERROR "if TestThatDoesNotExist is true")
|
|
else()
|
|
message(STATUS "if TestThatDoesNotExist is false")
|
|
endif()
|