RosettaCodeData/Task/Loops-Foreach/CMake/loops-foreach.cmake
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

5 lines
89 B
CMake

set(list one.c two.c three.c)
foreach(file ${list})
message(${file})
endforeach(file)