summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/continue/ContinueForeach.cmake
blob: 9b3e17f3e69fc69a5c2004a6dad19f7ba32e2d95 (plain)
1
2
3
4
5
6
7
8
message(STATUS "start")
foreach(iter RANGE 1 5)
  if("${iter}" EQUAL 1 OR "${iter}" EQUAL 3 OR "${iter}" EQUAL 5)
    continue()
  endif()
  message(STATUS "${iter}")
endforeach()
message(STATUS "end")