ContinueWhile.cmake 217 B

12345678910
  1. message(STATUS "start")
  2. unset(iter)
  3. while(NOT "${iter}" STREQUAL "aaaaa")
  4. string(APPEND iter "a")
  5. if("${iter}" STREQUAL "aaa")
  6. continue()
  7. endif()
  8. message(STATUS "${iter}")
  9. endwhile()
  10. message(STATUS "end")