mirror of https://gitee.com/bigwinds/arangodb
Fix quoting for older cmake versions
This commit is contained in:
parent
4b2fb9ff0d
commit
05539e36ff
|
@ -140,7 +140,7 @@ endif()
|
|||
|
||||
macro(to_native_path sourceVarName)
|
||||
if (MSVC)
|
||||
string(REGEX REPLACE "/" "\\\\\\\\" myVar ${${sourceVarName}} )
|
||||
string(REGEX REPLACE "/" "\\\\\\\\" "myVar" "${${sourceVarName}}" )
|
||||
else()
|
||||
set(myVar "${${sourceVarName}}")
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue