1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# (c) 2019-2022 Copyright ownCloud GmbH
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING* file.
find_path(LIBCLOUDPROVIDERS_INCLUDE_DIR
NAMES
cloudprovidersaccountexporter.h
cloudprovidersproviderexporter.h
PATH_SUFFIXES
cloudproviders
)
find_library(LIBCLOUDPROVIDERS_LIBRARY
NAMES
cloudproviders
PATHS
/usr/lib
/usr/lib/${CMAKE_ARCH_TRIPLET}
/usr/local/lib
${CMAKE_LIBRARY_PATH}
${CMAKE_INSTALL_PREFIX}/lib
)
# Using version <0.3.0 would lead to crashes during runtime when accounts are unexported.
get_filename_component(LIBCLOUDPROVIDERS_LIBRARY_REALPATH ${LIBCLOUDPROVIDERS_LIBRARY} REALPATH)
if(${LIBCLOUDPROVIDERS_LIBRARY_REALPATH} MATCHES "\\.([0-9]*)\\.([0-9]*)\\.([0-9]*)$")
if ((${CMAKE_MATCH_1} EQUAL 0) AND (${CMAKE_MATCH_2} LESS 3))
message("libcloudproviders version is older than 0.3.0, not enabling it")
set(LIBCLOUDPROVIDERS_LIBRARY "")
endif()
else()
message("Can't determine libcloudproviders version, not enabling it")
set(LIBCLOUDPROVIDERS_LIBRARY "")
endif()
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
Libcloudproviders
DEFAULT_MSG
LIBCLOUDPROVIDERS_LIBRARY LIBCLOUDPROVIDERS_INCLUDE_DIR
)
mark_as_advanced(LIBCLOUDPROVIDERS_INCLUDE_DIR LIBCLOUDPROVIDERS_LIBRARY)
|