diff options
author | Chris Dyer <redpony@gmail.com> | 2015-03-05 15:15:38 -0500 |
---|---|---|
committer | Chris Dyer <redpony@gmail.com> | 2015-03-05 15:15:38 -0500 |
commit | 154b799d148276b09aa740a67e0afdf94281c452 (patch) | |
tree | 92141cb1bf7d9ccf644e1bcb9d25c6e8c97c88a6 /cmake/FindLibDL.cmake | |
parent | 91434e55cd1d1a8b810c0b84d684c42706564043 (diff) | |
parent | 55b75d9f94a36de2d3f7eb9eb132b8286ddd2723 (diff) |
Merge branch 'cmake' of https://github.com/redpony/cdec into cmake
Diffstat (limited to 'cmake/FindLibDL.cmake')
-rw-r--r-- | cmake/FindLibDL.cmake | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cmake/FindLibDL.cmake b/cmake/FindLibDL.cmake new file mode 100644 index 00000000..1689e4c7 --- /dev/null +++ b/cmake/FindLibDL.cmake @@ -0,0 +1,30 @@ +# - Find libdl +# Find the native LIBDL includes and library +# +# LIBDL_INCLUDE_DIR - where to find dlfcn.h, etc. +# LIBDL_LIBRARIES - List of libraries when using libdl. +# LIBDL_FOUND - True if libdl found. + + +IF (LIBDL_INCLUDE_DIR) + # Already in cache, be silent + SET(LIBDL_FIND_QUIETLY TRUE) +ENDIF (LIBDL_INCLUDE_DIR) + +FIND_PATH(LIBDL_INCLUDE_DIR dlfcn.h) + +SET(LIBDL_NAMES dl libdl ltdl libltdl) +FIND_LIBRARY(LIBDL_LIBRARY NAMES ${LIBDL_NAMES} ) + +# handle the QUIETLY and REQUIRED arguments and set LIBDL_FOUND to TRUE if +# all listed variables are TRUE +INCLUDE(FindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibDL DEFAULT_MSG LIBDL_LIBRARY LIBDL_INCLUDE_DIR) + +IF(LIBDL_FOUND) + SET( LIBDL_LIBRARIES ${LIBDL_LIBRARY} ) +ELSE(LIBDL_FOUND) + SET( LIBDL_LIBRARIES ) +ENDIF(LIBDL_FOUND) + +MARK_AS_ADVANCED( LIBDL_LIBRARY LIBDL_INCLUDE_DIR ) |