5 lines
217 B
CMake
Executable file
5 lines
217 B
CMake
Executable file
function(vcpkg_replace_string filename match replace)
|
|
file(READ "${filename}" contents)
|
|
string(REPLACE "${match}" "${replace}" contents "${contents}")
|
|
file(WRITE "${filename}" "${contents}")
|
|
endfunction()
|