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()
|