Mercurial > hg > orthanc
view OrthancFramework/Resources/CMake/OpenSslConfiguration.cmake @ 4579:5ee9a4f8a0f0 db-changes
fix build on lsb
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 09 Mar 2021 14:30:05 +0100 |
parents | 59b667dd58a8 |
children | 312e0e29de90 7053502fbf97 |
line wrap: on
line source
# Orthanc - A Lightweight, RESTful DICOM Store # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2021 Osimis S.A., Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License # as published by the Free Software Foundation, either version 3 of # the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this program. If not, see # <http://www.gnu.org/licenses/>. if (STATIC_BUILD OR NOT USE_SYSTEM_OPENSSL) if (OPENSSL_STATIC_VERSION STREQUAL "1.0.2") include(${CMAKE_CURRENT_LIST_DIR}/OpenSslConfigurationStatic-1.0.2.cmake) elseif (OPENSSL_STATIC_VERSION STREQUAL "1.1.1") include(${CMAKE_CURRENT_LIST_DIR}/OpenSslConfigurationStatic-1.1.1.cmake) else() message(FATAL_ERROR "Unsupported version of OpenSSL: ${OPENSSL_STATIC_VERSION}") endif() source_group(ThirdParty\\OpenSSL REGULAR_EXPRESSION ${OPENSSL_SOURCES_DIR}/.*) elseif (CMAKE_CROSSCOMPILING AND "${CMAKE_SYSTEM_VERSION}" STREQUAL "CrossToolNg") CHECK_INCLUDE_FILE_CXX(openssl/opensslv.h HAVE_OPENSSL_H) if (NOT HAVE_OPENSSL_H) message(FATAL_ERROR "Please install the libopenssl-dev package") endif() CHECK_LIBRARY_EXISTS(crypto "OPENSSL_init" "" HAVE_OPENSSL_CRYPTO_LIB) if (NOT HAVE_OPENSSL_CRYPTO_LIB) message(FATAL_ERROR "Please install the libopenssl package") endif() # The "SSL_library_init" is for OpenSSL <= 1.0.2, whereas # "OPENSSL_init_ssl" is for OpenSSL >= 1.1.0 CHECK_LIBRARY_EXISTS(ssl "SSL_library_init" "" HAVE_OPENSSL_SSL_LIB) if (NOT HAVE_OPENSSL_SSL_LIB) CHECK_LIBRARY_EXISTS(ssl "OPENSSL_init_ssl" "" HAVE_OPENSSL_SSL_LIB_2) if (NOT HAVE_OPENSSL_SSL_LIB_2) message(FATAL_ERROR "Please install the libopenssl package") endif() endif() link_libraries(crypto ssl) else() include(FindOpenSSL) if (NOT ${OPENSSL_FOUND}) message(FATAL_ERROR "Unable to find OpenSSL") endif() include_directories(${OPENSSL_INCLUDE_DIR}) link_libraries(${OPENSSL_LIBRARIES}) endif()