blob: f69993cc4522149460217516726e331ec1423bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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")
|