mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 05:59:07 +08:00
15 lines
395 B
CMake
15 lines
395 B
CMake
|
#.rst:
|
||
|
# .. command:: vcpkg_replace_string
|
||
|
#
|
||
|
# Replace a string in a file.
|
||
|
#
|
||
|
# ::
|
||
|
# vcpkg_replace_string(filename match_string replace_string)
|
||
|
#
|
||
|
#
|
||
|
function(vcpkg_replace_string filename match_string replace_string)
|
||
|
file(READ ${filename} _contents)
|
||
|
string(REPLACE "${match_string}" "${replace_string}" _contents "${_contents}")
|
||
|
file(WRITE ${filename} "${_contents}")
|
||
|
endfunction()
|