We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
extend_path
1 parent bde561c commit 5da6d26Copy full SHA for 5da6d26
cmake/Modules/ExtendPath.cmake
@@ -10,7 +10,7 @@ function(extend_path joined_path base_path current_segment)
10
elseif("${base_path}" STREQUAL "")
11
set(temp_path "${current_segment}")
12
elseif(IS_ABSOLUTE "${current_segment}")
13
- message(WARNING "Since \"${current_segment}\" is absolute, it overrides install path: \"${base_path}\".")
+ message(WARNING "Since \"${current_segment}\" is absolute, it overrides base path: \"${base_path}\".")
14
15
else()
16
set(temp_path "${base_path}/${current_segment}")
0 commit comments