Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
RunCMake
/
continue
/
ContinueWhile.cmake
blob: f69993cc4522149460217516726e331ec1423bd5 [
file
] [
log
] [
blame
]
message
(
STATUS
"start"
)
unset
(
iter
)
while
(
NOT
"${iter}"
STREQUAL
"aaaaa"
)
string
(
APPEND iter
"a"
)
if
(
"${iter}"
STREQUAL
"aaa"
)
continue
()
endif
()
message
(
STATUS
"${iter}"
)
endwhile
()
message
(
STATUS
"end"
)