mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
12 lines
240 B
CMake
12 lines
240 B
CMake
macro(wrapped_continue)
|
|
continue()
|
|
endmacro()
|
|
|
|
message(STATUS "start")
|
|
foreach(iter RANGE 1 5)
|
|
message(STATUS "${iter} before continue")
|
|
wrapped_continue()
|
|
message(STATUS "${iter} after continue")
|
|
endforeach()
|
|
message(STATUS "end")
|