CMake: Keep existing options in LIBS when adding -lrt

This makes no difference yet because -lrt is currently the only option
that might be added to LIBS.
This commit is contained in:
Lasse Collin 2024-06-20 18:12:21 +03:00
parent 47aaa92516
commit 75ce4797d4
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ if(NOT HAVE_CLOCK_GETTIME)
# CMAKE_REQUIRED_LIBRARIES for further tests too.
if(HAVE_CLOCK_GETTIME_LIBRT)
link_libraries(rt)
set(LIBS "-lrt") # For liblzma.pc
set(LIBS "-lrt ${LIBS}") # For liblzma.pc
else()
list(REMOVE_AT CMAKE_REQUIRED_LIBRARIES 0)
endif()