Skip to content

Commit

Permalink
Switching to absolute paths in CMake. Fixes nasa#2449
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch committed Dec 22, 2023
1 parent 6641547 commit d6b38d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/utilities.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ function(normalize_paths OUTPUT_NAME)
# Loop over the list and check
foreach (PATH_LIST IN LISTS ARGN)
foreach(PATH IN LISTS PATH_LIST)
get_filename_component(PATH "${PATH}" REALPATH)
get_filename_component(PATH "${PATH}" ABSOLUTE)
list(APPEND OUTPUT_LIST "${PATH}")
endforeach()
endforeach()
Expand Down

0 comments on commit d6b38d0

Please sign in to comment.