RosettaCodeData/Task/Loops-Foreach/CMake/loops-foreach.cmake

6 lines
89 B
CMake
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
set(list one.c two.c three.c)
foreach(file ${list})
message(${file})
endforeach(file)