mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-12 01:28:24 -05:00
6 lines
217 B
CMake
Executable File
6 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()
|