mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
11 lines
233 B
CMake
11 lines
233 B
CMake
list(APPEND foo 1 2 3 4 5)
|
|
|
|
message(STATUS "start")
|
|
foreach(iter IN LISTS foo)
|
|
if("${iter}" EQUAL 1 OR "${iter}" EQUAL 3 OR "${iter}" EQUAL 5)
|
|
continue()
|
|
endif()
|
|
message(STATUS "${iter}")
|
|
endforeach()
|
|
message(STATUS "end")
|