mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
880ca66b51
When `conditionEvaluator.IsTrue(...)` returns `false` it just didn't print the error occured.
9 lines
166 B
CMake
9 lines
166 B
CMake
set(var_with_paren "(")
|
|
set(some_list "")
|
|
|
|
while(NOT ${var_with_paren} IN_LIST some_list)
|
|
message(STATUS "Never prints")
|
|
endwhile()
|
|
|
|
message(STATUS "Never prints")
|