CMP0054-WARN.cmake 201 B

1234567
  1. set(FOO "BAR")
  2. if(NOT "FOO" STREQUAL "BAR")
  3. message(FATAL_ERROR "The given literals should match")
  4. elseif("FOO" STREQUAL "BING")
  5. message(FATAL_ERROR "The given literals should not match")
  6. endif()