mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
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")
|