mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-30 11:10:06 -05:00
ENH: use CMAKE_DL_LIBS and not dl directly as it does not always exist
This commit is contained in:
@@ -516,9 +516,9 @@ IF(KWSYS_C_SRCS OR KWSYS_CXX_SRCS)
|
||||
# If kwsys contains the DynamicLoader, need extra library
|
||||
IF(KWSYS_USE_DynamicLoader)
|
||||
ADD_LIBRARY(testDynload SHARED testDynload.c)
|
||||
IF(UNIX AND NOT CYGWIN)
|
||||
TARGET_LINK_LIBRARIES(${KWSYS_NAMESPACE} dl)
|
||||
ENDIF(UNIX AND NOT CYGWIN)
|
||||
IF(UNIX)
|
||||
TARGET_LINK_LIBRARIES(${KWSYS_NAMESPACE} ${CMAKE_DL_LIBS})
|
||||
ENDIF(UNIX)
|
||||
ENDIF(KWSYS_USE_DynamicLoader)
|
||||
|
||||
# Apply user-defined target properties to the library.
|
||||
|
||||
Reference in New Issue
Block a user