mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-25 14:36:01 +03:00
Add a module to find libdl.so.
This commit is contained in:
parent
fc6a5ce222
commit
a1116b0e00
2 changed files with 79 additions and 2 deletions
74
cmake/Modules/FindDlfcn.cmake
Normal file
74
cmake/Modules/FindDlfcn.cmake
Normal file
|
@ -0,0 +1,74 @@
|
|||
# - Try to find Dlfcn
|
||||
# Once done this will define
|
||||
#
|
||||
# DLFCN_FOUND - system has Dlfcn
|
||||
# DLFCN_INCLUDE_DIRS - the Dlfcn include directory
|
||||
# DLFCN_LIBRARIES - Link these to use Dlfcn
|
||||
# DLFCN_DEFINITIONS - Compiler switches required for using Dlfcn
|
||||
#
|
||||
# Copyright (c) 2008 Andreas Schneider <mail@cynapses.org>
|
||||
#
|
||||
# Redistribution and use is allowed according to the terms of the New
|
||||
# BSD license.
|
||||
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
||||
#
|
||||
|
||||
|
||||
if (DLFCN_LIBRARIES AND DLFCN_INCLUDE_DIRS)
|
||||
# in cache already
|
||||
set(DLFCN_FOUND TRUE)
|
||||
else (DLFCN_LIBRARIES AND DLFCN_INCLUDE_DIRS)
|
||||
find_path(DLFCN_INCLUDE_DIR
|
||||
NAMES
|
||||
dlfcn.h
|
||||
PATHS
|
||||
/usr/include
|
||||
/usr/local/include
|
||||
/opt/local/include
|
||||
/sw/include
|
||||
)
|
||||
|
||||
find_library(DL_LIBRARY
|
||||
NAMES
|
||||
dl
|
||||
PATHS
|
||||
/usr/lib
|
||||
/usr/local/lib
|
||||
/opt/local/lib
|
||||
/sw/lib
|
||||
)
|
||||
|
||||
if (DL_LIBRARY)
|
||||
set(DL_FOUND TRUE)
|
||||
endif (DL_LIBRARY)
|
||||
|
||||
set(DLFCN_INCLUDE_DIRS
|
||||
${DLFCN_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
if (DL_FOUND)
|
||||
set(DLFCN_LIBRARIES
|
||||
${DLFCN_LIBRARIES}
|
||||
${DL_LIBRARY}
|
||||
)
|
||||
endif (DL_FOUND)
|
||||
|
||||
if (DLFCN_INCLUDE_DIRS AND DLFCN_LIBRARIES)
|
||||
set(DLFCN_FOUND TRUE)
|
||||
endif (DLFCN_INCLUDE_DIRS AND DLFCN_LIBRARIES)
|
||||
|
||||
if (DLFCN_FOUND)
|
||||
if (NOT Dlfcn_FIND_QUIETLY)
|
||||
message(STATUS "Found Dlfcn: ${DLFCN_LIBRARIES}")
|
||||
endif (NOT Dlfcn_FIND_QUIETLY)
|
||||
else (DLFCN_FOUND)
|
||||
if (Dlfcn_FIND_REQUIRED)
|
||||
message(FATAL_ERROR "Could not find Dlfcn")
|
||||
endif (Dlfcn_FIND_REQUIRED)
|
||||
endif (DLFCN_FOUND)
|
||||
|
||||
# show the DLFCN_INCLUDE_DIRS and DLFCN_LIBRARIES variables only in the advanced view
|
||||
mark_as_advanced(DLFCN_INCLUDE_DIRS DLFCN_LIBRARIES)
|
||||
|
||||
endif (DLFCN_LIBRARIES AND DLFCN_INCLUDE_DIRS)
|
||||
|
|
@ -4,6 +4,7 @@ add_subdirectory(std)
|
|||
|
||||
find_package(Sqlite3 REQUIRED)
|
||||
find_package(Iniparser REQUIRED)
|
||||
find_package(Dlfcn REQUIRED)
|
||||
|
||||
set(CSYNC_PUBLIC_INCLUDE_DIRS
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
|
@ -12,8 +13,10 @@ set(CSYNC_PUBLIC_INCLUDE_DIRS
|
|||
)
|
||||
|
||||
set(CSYNC_PRIVATE_INCLUDE_DIRS
|
||||
${SQLITE3_INCLUDE_DIRS}
|
||||
${DLFCN_INCLUDE_DIRS}
|
||||
${INIPARSER_INCLUDE_DIRS}
|
||||
${LOG4C_INCLUDE_DIRS}
|
||||
${SQLITE3_INCLUDE_DIRS}
|
||||
${CSTDLIB_PUBLIC_INCLUDE_DIRS}
|
||||
${CMAKE_BINARY_DIR}
|
||||
)
|
||||
|
@ -26,10 +29,10 @@ set(CSYNC_LIBRARY
|
|||
set(CSYNC_LINK_LIBRARIES
|
||||
${CSYNC_LIBRARY}
|
||||
${CSTDLIB_LIBRARY}
|
||||
${DLFCN_LIBRARIES}
|
||||
${INIPARSER_LIBRARIES}
|
||||
${LOG4C_LIBRARIES}
|
||||
${SQLITE3_LIBRARIES}
|
||||
dl
|
||||
)
|
||||
|
||||
set(csync_SRCS
|
||||
|
|
Loading…
Reference in a new issue