7a649111cd
Automate with: find Tests -type f -print0 | xargs -0 perl -i -0pe \ 's/set\(([a-zA-Z0-9_]+)(\s+)"\$\{\1\}([^"])/string(APPEND \1\2"\3/g'
11 lines
217 B
CMake
11 lines
217 B
CMake
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")
|