cmake/Tests/RunCMake/if/unbalanced-parenthesis.cmake

6 lines
127 B
CMake
Raw Normal View History

2022-03-29 21:10:50 +02:00
set(paren "(")
if(${paren})
message(STATUS "Condition incorrectly true")
2021-11-20 13:41:27 +01:00
endif()
2022-03-29 21:10:50 +02:00
message(STATUS "Code incorrectly accepted")