6 lines
110 B
CMake
6 lines
110 B
CMake
set(FOO "BAR")
|
|
|
|
if(NOT "FOO" STREQUAL "BAR")
|
|
message(FATAL_ERROR "The given literals should match")
|
|
endif()
|