FindZstd.cmake 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. #[=======================================================================[.rst:
  25. FindZstd
  26. ----------
  27. Find the zstd library
  28. Result Variables
  29. ^^^^^^^^^^^^^^^^
  30. ``Zstd_FOUND``
  31. System has zstd
  32. ``Zstd_INCLUDE_DIRS``
  33. The zstd include directories.
  34. ``Zstd_LIBRARIES``
  35. The libraries needed to use zstd
  36. #]=======================================================================]
  37. if(UNIX)
  38. find_package(PkgConfig QUIET)
  39. pkg_search_module(PC_Zstd libzstd)
  40. endif()
  41. find_path(Zstd_INCLUDE_DIR zstd.h
  42. HINTS
  43. ${PC_Zstd_INCLUDEDIR}
  44. ${PC_Zstd_INCLUDE_DIRS}
  45. )
  46. find_library(Zstd_LIBRARY NAMES zstd
  47. HINTS
  48. ${PC_Zstd_LIBDIR}
  49. ${PC_Zstd_LIBRARY_DIRS}
  50. )
  51. if(Zstd_INCLUDE_DIR)
  52. file(READ "${Zstd_INCLUDE_DIR}/zstd.h" _zstd_header)
  53. string(REGEX MATCH ".*define ZSTD_VERSION_MAJOR *([0-9]+).*define ZSTD_VERSION_MINOR *([0-9]+).*define ZSTD_VERSION_RELEASE *([0-9]+)" _zstd_ver "${_zstd_header}")
  54. set(Zstd_VERSION "${CMAKE_MATCH_1}.${CMAKE_MATCH_2}.${CMAKE_MATCH_3}")
  55. endif()
  56. include(FindPackageHandleStandardArgs)
  57. find_package_handle_standard_args(Zstd
  58. REQUIRED_VARS
  59. Zstd_LIBRARY
  60. Zstd_INCLUDE_DIR
  61. VERSION_VAR Zstd_VERSION
  62. )
  63. if(Zstd_FOUND)
  64. set(Zstd_LIBRARIES ${Zstd_LIBRARY})
  65. set(Zstd_INCLUDE_DIRS ${Zstd_INCLUDE_DIR})
  66. endif()
  67. mark_as_advanced(Zstd_INCLUDE_DIRS Zstd_LIBRARIES)