mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 22:30:07 -05:00
5 lines
117 B
CMake
5 lines
117 B
CMake
function(read_json filename outvar)
|
|
file(READ "${filename}" ${outvar})
|
|
return(PROPAGATE ${outvar})
|
|
endfunction()
|