Skip to content

Commit

Permalink
Switching to absolute paths in CMake. Fixes #2449 (#2451)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch authored Jan 8, 2024
1 parent bf81b68 commit 76d4e5b
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 76d4e5b

Please sign in to comment.