cgal/CMake/cmake/modules/ReadLines.cmake

9 lines
169 B
CMake

macro( readlines file lines )
file(READ ${file} ${file}_contents )
string( REPLACE "\n" ";" ${lines} ${${file}_contents} )
endmacro( readlines file lines )