mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
CMake: Check for third party libraries using pkgconfig
Try to find libraries using pkgconfig and fallback to old behaviour if that fails
This commit is contained in:
parent
d32980ea82
commit
d9633436dc
@ -208,6 +208,7 @@ if(MSVC AND USE_STATIC_MSVC_RUNTIME)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Configure pkg-config
|
# Configure pkg-config
|
||||||
|
find_package(PkgConfig)
|
||||||
file(READ "include/xlsxwriter.h" ver)
|
file(READ "include/xlsxwriter.h" ver)
|
||||||
|
|
||||||
string(REGEX MATCH "LXW_VERSION \"([^\"]+)\"" _ ${ver})
|
string(REGEX MATCH "LXW_VERSION \"([^\"]+)\"" _ ${ver})
|
||||||
@ -224,14 +225,24 @@ enable_language(CXX)
|
|||||||
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
||||||
|
|
||||||
# ZLIB
|
# ZLIB
|
||||||
find_package(ZLIB "1.0" REQUIRED)
|
if(PKG_CONFIG_FOUND)
|
||||||
list(APPEND LXW_PRIVATE_INCLUDE_DIRS ${ZLIB_INCLUDE_DIRS})
|
pkg_check_modules(ZLIB zlib)
|
||||||
message("zlib version: " ${ZLIB_VERSION})
|
list(APPEND LXW_PRIVATE_INCLUDE_DIRS ${ZLIB_INCLUDE_DIRS})
|
||||||
|
else(NOT ZLIB_FOUND)
|
||||||
|
find_package(ZLIB "1.0" REQUIRED)
|
||||||
|
list(APPEND LXW_PRIVATE_INCLUDE_DIRS ${ZLIB_INCLUDE_DIRS})
|
||||||
|
message("zlib version: " ${ZLIB_VERSION})
|
||||||
|
endif()
|
||||||
|
|
||||||
# MINIZIP
|
# MINIZIP
|
||||||
if (USE_SYSTEM_MINIZIP)
|
if(USE_SYSTEM_MINIZIP)
|
||||||
find_package(MINIZIP "1.0" REQUIRED)
|
if(PKG_CONFIG_FOUND)
|
||||||
list(APPEND LXW_PRIVATE_INCLUDE_DIRS ${MINIZIP_INCLUDE_DIRS})
|
pkg_check_modules(MINIZIP minizip)
|
||||||
|
list(APPEND LXW_PRIVATE_INCLUDE_DIRS ${MINIZIP_INCLUDE_DIRS}/..)
|
||||||
|
else(NOT MINIZIP_FOUND)
|
||||||
|
find_package(MINIZIP "1.0" REQUIRED)
|
||||||
|
list(APPEND LXW_PRIVATE_INCLUDE_DIRS ${MINIZIP_INCLUDE_DIRS})
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# LIBRARY
|
# LIBRARY
|
||||||
@ -274,8 +285,11 @@ if(NOT USE_OPENSSL_MD5 AND NOT USE_NO_MD5)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(USE_OPENSSL_MD5)
|
if(USE_OPENSSL_MD5)
|
||||||
find_package(OpenSSL REQUIRED)
|
if(PKG_CONFIG_FOUND)
|
||||||
if(OpenSSL_FOUND)
|
pkg_check_modules(LIBCRYPTO libcrypto)
|
||||||
|
include_directories(${LIBCRYPTO_INCLUDE_DIRS})
|
||||||
|
else(NOT LIBCRYPTO_FOUND)
|
||||||
|
find_package(OpenSSL REQUIRED)
|
||||||
include_directories(${OPENSSL_INCLUDE_DIR})
|
include_directories(${OPENSSL_INCLUDE_DIR})
|
||||||
message(STATUS "OpenSSL version: ${OPENSSL_VERSION}")
|
message(STATUS "OpenSSL version: ${OPENSSL_VERSION}")
|
||||||
endif()
|
endif()
|
||||||
@ -294,7 +308,21 @@ target_sources(${PROJECT_NAME}
|
|||||||
PRIVATE ${LXW_SOURCES}
|
PRIVATE ${LXW_SOURCES}
|
||||||
PUBLIC ${LXW_HEADERS}
|
PUBLIC ${LXW_HEADERS}
|
||||||
)
|
)
|
||||||
target_link_libraries(${PROJECT_NAME} LINK_PUBLIC ${ZLIB_LIBRARIES} ${MINIZIP_LIBRARIES} ${LIB_CRYPTO} ${OPENSSL_CRYPTO_LIBRARY})
|
if(ZLIB_LDFLAGS)
|
||||||
|
target_link_libraries(${PROJECT_NAME} LINK_PUBLIC ${ZLIB_LDFLAGS})
|
||||||
|
else()
|
||||||
|
target_link_libraries(${PROJECT_NAME} LINK_PUBLIC ${ZLIB_LIBRARIES})
|
||||||
|
endif()
|
||||||
|
if(MINIZIP_LDFLAGS)
|
||||||
|
target_link_libraries(${PROJECT_NAME} LINK_PUBLIC ${MINIZIP_LDFLAGS})
|
||||||
|
else()
|
||||||
|
target_link_libraries(${PROJECT_NAME} LINK_PUBLIC ${MINIZIP_LIBRARIES})
|
||||||
|
endif()
|
||||||
|
if(LIBCRYPTO_LDFLAGS)
|
||||||
|
target_link_libraries(${PROJECT_NAME} LINK_PUBLIC ${LIBCRYPTO_LDFLAGS})
|
||||||
|
else()
|
||||||
|
target_link_libraries(${PROJECT_NAME} LINK_PUBLIC ${LIB_CRYPTO} ${OPENSSL_CRYPTO_LIBRARY})
|
||||||
|
endif()
|
||||||
target_compile_definitions(${PROJECT_NAME} PRIVATE ${LXW_PRIVATE_COMPILE_DEFINITIONS})
|
target_compile_definitions(${PROJECT_NAME} PRIVATE ${LXW_PRIVATE_COMPILE_DEFINITIONS})
|
||||||
|
|
||||||
# /utf-8 needs VS2015 Update 2 or above.
|
# /utf-8 needs VS2015 Update 2 or above.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user