6 lines
89 B
CMake
6 lines
89 B
CMake
|
|
set(list one.c two.c three.c)
|
||
|
|
|
||
|
|
foreach(file ${list})
|
||
|
|
message(${file})
|
||
|
|
endforeach(file)
|