mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-17 23:10:26 +08:00
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()
|