trace.cmake 176 B

1234567891011
  1. function(testFlowControl)
  2. foreach(i RANGE 1)
  3. if("${i}" STREQUAL "1")
  4. set(foo)
  5. else()
  6. set(bar)
  7. endif()
  8. endforeach()
  9. endfunction()
  10. testFlowControl()