
- CONF_INSTALL_DIR is no longer hardcoded, except for the case when it's explicitely specified via -D in cmake - extractor scripts are now copied in tools directory - fixed some changes in ACE which made servers crash in FreeBSD
42 lines
1.1 KiB
CMake
42 lines
1.1 KiB
CMake
# - find where dlopen and friends are located.
|
|
# DL_FOUND - system has dynamic linking interface available
|
|
# DL_INCLUDE_DIR - where dlfcn.h is located.
|
|
# DL_LIBRARY - libraries needed to use dlopen
|
|
|
|
include(CheckFunctionExists)
|
|
|
|
find_path(DL_INCLUDE_DIR NAMES dlfcn.h)
|
|
find_library(DL_LIBRARY NAMES dl)
|
|
if(DL_LIBRARY)
|
|
set(DL_FOUND TRUE)
|
|
else(DL_LIBRARY)
|
|
check_function_exists(dlopen DL_FOUND)
|
|
# If dlopen can be found without linking in dl then dlopen is part
|
|
# of libc, so don't need to link extra libs.
|
|
set(DL_LIBRARY "")
|
|
endif(DL_LIBRARY)
|
|
|
|
if(DL_FOUND)
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(DL
|
|
FOUND_VAR
|
|
DL_FOUND
|
|
REQUIRED_VARS
|
|
DL_INCLUDE_DIR
|
|
)
|
|
|
|
mark_as_advanced(DL_INCLUDE_DIR DL_LIBRARY)
|
|
endif()
|
|
|
|
if(NOT TARGET DL::DL)
|
|
add_library(DL::DL INTERFACE IMPORTED)
|
|
if(DL_FOUND)
|
|
if (DL_LIBRARY)
|
|
set_target_properties(DL::DL PROPERTIES
|
|
INTERFACE_LINK_LIBRARIES "${DL_LIBRARY}")
|
|
endif()
|
|
set_target_properties(DL::DL PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES "${DL_INCLUDE_DIR}")
|
|
endif()
|
|
endif()
|