nextcloud-desktop/ConfigureChecks.cmake

58 lines
1.5 KiB
CMake
Raw Normal View History

2008-02-27 20:56:47 +03:00
include(CheckIncludeFile)
include(CheckSymbolExists)
include(CheckFunctionExists)
include(CheckLibraryExists)
include(CheckTypeSize)
include(CheckCXXSourceCompiles)
set(PACKAGE ${APPLICATION_NAME})
set(VERSION ${APPLICATION_VERSION})
set(DATADIR ${DATA_INSTALL_DIR})
set(LIBDIR ${LIB_INSTALL_DIR})
set(PLUGINDIR "${PLUGIN_INSTALL_DIR}-${LIBRARY_SOVERSION}")
set(SYSCONFDIR ${SYSCONF_INSTALL_DIR})
set(BINARYDIR ${CMAKE_BINARY_DIR})
set(SOURCEDIR ${CMAKE_SOURCE_DIR})
2009-09-01 14:25:10 +04:00
2011-10-17 21:07:52 +04:00
# HEADER FILES
2009-09-01 14:25:10 +04:00
# FUNCTIONS
2011-10-17 21:07:52 +04:00
if (NOT LINUX)
# librt
check_library_exists(rt nanosleep "" HAVE_LIBRT)
2012-04-13 23:48:39 +04:00
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} )
2011-10-17 21:07:52 +04:00
endif (NOT LINUX)
check_library_exists(rt clock_gettime "" HAVE_CLOCK_GETTIME)
if (HAVE_LIBRT OR HAVE_CLOCK_GETTIME)
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} rt)
endif (HAVE_LIBRT OR HAVE_CLOCK_GETTIME)
2009-09-01 14:25:10 +04:00
check_library_exists(dl dlopen "" HAVE_LIBDL)
if (HAVE_LIBDL)
2011-10-17 21:07:52 +04:00
find_library(DLFCN_LIBRARY dl)
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ${DLFCN_LIBRARY})
2009-09-01 14:25:10 +04:00
endif (HAVE_LIBDL)
2012-02-20 20:07:21 +04:00
check_function_exists(asprintf HAVE_ASPRINTF)
if(NOT HAVE_ASPRINTF)
if(MINGW)
add_definitions( -D__USE_MINGW_ANSI_STDIO=1 )
endif()
endif()
2012-03-02 17:54:53 +04:00
check_function_exists(fnmatch HAVE_FNMATCH)
if(NOT HAVE_FNMATCH AND WIN32)
find_library(SHLWAPI_LIBRARY shlwapi)
endif()
2012-02-20 21:23:31 +04:00
check_function_exists(strerror_r HAVE_STRERROR_R)
2012-02-20 20:11:13 +04:00
check_function_exists(utimes HAVE_UTIMES)
2012-02-20 21:27:23 +04:00
check_function_exists(lstat HAVE_LSTAT)
2009-09-01 14:25:10 +04:00
set(CSYNC_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} CACHE INTERNAL "csync required system libraries")