0de867dde2
Inspired-by: Doug Barbieri Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
11 lines
214 B
CMake
11 lines
214 B
CMake
message(STATUS "start")
|
|
unset(iter)
|
|
while(NOT "${iter}" STREQUAL "aaaaa")
|
|
set(iter "${iter}a")
|
|
if("${iter}" STREQUAL "aaa")
|
|
continue()
|
|
endif()
|
|
message(STATUS "${iter}")
|
|
endwhile()
|
|
message(STATUS "end")
|