blob: b16f44faaada17679346e0cb77a49fa10d56c3ac [file] [log] [blame] [edit]
function(testFlowControl)
foreach(i RANGE 1)
if("${i}" STREQUAL "1")
set(foo)
else()
set(bar)
endif()
endforeach()
endfunction()
testFlowControl()