mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-17 16:47:55 +08:00
299f581dc3
Co-authored-by: Billy Robert O'Neal <bion@microsoft.com>
5 lines
255 B
CMake
5 lines
255 B
CMake
function(vcpkg_escape_regex_control_characters out_var string_with_regex_characters)
|
|
string(REGEX REPLACE "[][+.*()^\\$?|]" "\\\\\\0" _escaped_content "${string_with_regex_characters}")
|
|
set(${out_var} "${_escaped_content}" PARENT_SCOPE)
|
|
endfunction()
|