2
0

FindMbedTLS.cmake 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which
  11. # you should have received as part of this distribution. The terms
  12. # are also available at https://curl.se/docs/copyright.html.
  13. #
  14. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. # copies of the Software, and permit persons to whom the Software is
  16. # furnished to do so, under the terms of the COPYING file.
  17. #
  18. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. # KIND, either express or implied.
  20. #
  21. # SPDX-License-Identifier: curl
  22. #
  23. ###########################################################################
  24. # Find the mbedtls library
  25. #
  26. # Input variables:
  27. #
  28. # MBEDTLS_INCLUDE_DIR The mbedtls include directory
  29. # MBEDTLS_INCLUDE_DIRS The mbedtls include directory (deprecated)
  30. # MBEDTLS_LIBRARY Path to mbedtls library
  31. # MBEDX509_LIBRARY Path to mbedx509 library
  32. # MBEDCRYPTO_LIBRARY Path to mbedcrypto library
  33. #
  34. # Result variables:
  35. #
  36. # MBEDTLS_FOUND System has mbedtls
  37. # MBEDTLS_INCLUDE_DIRS The mbedtls include directories
  38. # MBEDTLS_LIBRARIES The mbedtls library names
  39. # MBEDTLS_VERSION Version of mbedtls
  40. if(DEFINED MBEDTLS_INCLUDE_DIRS AND NOT DEFINED MBEDTLS_INCLUDE_DIR)
  41. message(WARNING "MBEDTLS_INCLUDE_DIRS is deprecated, use MBEDTLS_INCLUDE_DIR instead.")
  42. set(MBEDTLS_INCLUDE_DIR "${MBEDTLS_INCLUDE_DIRS}")
  43. unset(MBEDTLS_INCLUDE_DIRS)
  44. endif()
  45. if(CURL_USE_PKGCONFIG)
  46. find_package(PkgConfig QUIET)
  47. pkg_check_modules(PC_MBEDTLS "mbedtls")
  48. endif()
  49. find_path(MBEDTLS_INCLUDE_DIR NAMES "mbedtls/ssl.h"
  50. HINTS
  51. ${PC_MBEDTLS_INCLUDEDIR}
  52. ${PC_MBEDTLS_INCLUDE_DIRS}
  53. )
  54. find_library(MBEDTLS_LIBRARY NAMES "mbedtls"
  55. HINTS
  56. ${PC_MBEDTLS_LIBDIR}
  57. ${PC_MBEDTLS_LIBRARY_DIRS}
  58. )
  59. find_library(MBEDX509_LIBRARY NAMES "mbedx509"
  60. HINTS
  61. ${PC_MBEDTLS_LIBDIR}
  62. ${PC_MBEDTLS_LIBRARY_DIRS}
  63. )
  64. find_library(MBEDCRYPTO_LIBRARY NAMES "mbedcrypto"
  65. HINTS
  66. ${PC_MBEDTLS_LIBDIR}
  67. ${PC_MBEDTLS_LIBRARY_DIRS}
  68. )
  69. if(PC_MBEDTLS_VERSION)
  70. set(MBEDTLS_VERSION ${PC_MBEDTLS_VERSION})
  71. elseif(MBEDTLS_INCLUDE_DIR)
  72. if(EXISTS "${MBEDTLS_INCLUDE_DIR}/mbedtls/build_info.h") # 3.x
  73. set(_version_header "${MBEDTLS_INCLUDE_DIR}/mbedtls/build_info.h")
  74. elseif(EXISTS "${MBEDTLS_INCLUDE_DIR}/mbedtls/version.h") # 2.x
  75. set(_version_header "${MBEDTLS_INCLUDE_DIR}/mbedtls/version.h")
  76. else()
  77. unset(_version_header)
  78. endif()
  79. if(_version_header)
  80. set(_version_regex "#[\t ]*define[\t ]+MBEDTLS_VERSION_STRING[\t ]+\"([0-9.]+)\"")
  81. file(STRINGS "${_version_header}" _version_str REGEX "${_version_regex}")
  82. string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
  83. set(MBEDTLS_VERSION "${_version_str}")
  84. unset(_version_regex)
  85. unset(_version_str)
  86. unset(_version_header)
  87. endif()
  88. endif()
  89. include(FindPackageHandleStandardArgs)
  90. find_package_handle_standard_args(MbedTLS
  91. REQUIRED_VARS
  92. MBEDTLS_INCLUDE_DIR
  93. MBEDTLS_LIBRARY
  94. MBEDX509_LIBRARY
  95. MBEDCRYPTO_LIBRARY
  96. VERSION_VAR
  97. MBEDTLS_VERSION
  98. )
  99. if(MBEDTLS_FOUND)
  100. set(MBEDTLS_INCLUDE_DIRS ${MBEDTLS_INCLUDE_DIR})
  101. set(MBEDTLS_LIBRARIES ${MBEDTLS_LIBRARY} ${MBEDX509_LIBRARY} ${MBEDCRYPTO_LIBRARY})
  102. endif()
  103. mark_as_advanced(MBEDTLS_INCLUDE_DIR MBEDTLS_LIBRARY MBEDX509_LIBRARY MBEDCRYPTO_LIBRARY)