mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 17:37:36 +03:00
b5ed352aa3
Only confluct resolution, do not compile or works Conflicts: CMakeLists.txt CPackConfig.cmake ConfigureChecks.cmake client/csync_client.c cmake/Modules/DefineCompilerFlags.cmake cmake/Modules/DefineInstallationPaths.cmake cmake/Modules/FindIconv.cmake cmake/Modules/FindIniparser.cmake cmake/Modules/FindNeon.cmake config.h.cmake config/CMakeLists.txt config/ocsync.conf doc/CMakeLists.txt modules/csync_owncloud.c modules/csync_sftp2.c src/CMakeLists.txt src/csync.c src/csync.h src/csync_config.c src/csync_exclude.c src/csync_lock.c src/csync_macros.h src/csync_misc.c src/csync_misc.h src/csync_private.h src/csync_propagate.c src/csync_statedb.c src/csync_statedb.h src/csync_update.c src/csync_util.c src/csync_util.h src/std/c_dir.c src/std/c_file.c src/std/c_private.h src/std/c_string.c src/std/c_string.h src/std/c_time.c src/vio/csync_vio.c src/vio/csync_vio.h src/vio/csync_vio_file_stat.h src/vio/csync_vio_local.c src/vio/csync_vio_method.h tests/CMakeLists.txt tests/csync_tests/check_csync_statedb_load.c tests/csync_tests/check_csync_statedb_query.c tests/csync_tests/check_csync_treewalk.c tests/csync_tests/check_csync_update.c tests/ownCloud/HTTP/DAV.pm tests/ownCloud/ownCloud/Test.pm tests/std_tests/check_std_c_str.c tests/vio_tests/check_vio.c
75 lines
2.1 KiB
CMake
75 lines
2.1 KiB
CMake
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})
|
|
|
|
# HEADER FILES
|
|
check_include_file(argp.h HAVE_ARGP_H)
|
|
|
|
# FUNCTIONS
|
|
if (NOT LINUX)
|
|
# librt
|
|
check_library_exists(rt nanosleep "" HAVE_LIBRT)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} )
|
|
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)
|
|
|
|
check_library_exists(dl dlopen "" HAVE_LIBDL)
|
|
if (HAVE_LIBDL)
|
|
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} dl)
|
|
endif (HAVE_LIBDL)
|
|
|
|
check_function_exists(asprintf HAVE_ASPRINTF)
|
|
if(NOT HAVE_ASPRINTF)
|
|
if(MINGW)
|
|
add_definitions( -D__USE_MINGW_ANSI_STDIO=1 )
|
|
endif()
|
|
endif()
|
|
|
|
check_function_exists(fnmatch HAVE_FNMATCH)
|
|
if(NOT HAVE_FNMATCH AND WIN32)
|
|
find_library(SHLWAPI_LIBRARY shlwapi)
|
|
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} shlwapi)
|
|
endif()
|
|
|
|
if(WIN32)
|
|
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} psapi kernel32)
|
|
endif()
|
|
|
|
check_function_exists(timegm HAVE_TIMEGM)
|
|
check_function_exists(strerror_r HAVE_STRERROR_R)
|
|
check_function_exists(utimes HAVE_UTIMES)
|
|
check_function_exists(lstat HAVE_LSTAT)
|
|
check_function_exists(asprintf HAVE_ASPRINTF)
|
|
if (WIN32)
|
|
check_function_exists(__mingw_asprintf HAVE___MINGW_ASPRINTF)
|
|
endif(WIN32)
|
|
if (UNIX AND HAVE_ASPRINTF)
|
|
add_definitions(-D_GNU_SOURCE)
|
|
endif (UNIX AND HAVE_ASPRINTF)
|
|
if (WIN32)
|
|
check_function_exists(__mingw_asprintf HAVE___MINGW_ASPRINTF)
|
|
endif(WIN32)
|
|
|
|
if (UNIT_TESTING)
|
|
set(WITH_UNIT_TESTING ON)
|
|
endif (UNIT_TESTING)
|
|
|
|
set(CSYNC_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} CACHE INTERNAL "csync required system libraries")
|