FindZstd.cmake 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2022, 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. include(FindPackageHandleStandardArgs)
  52. find_package_handle_standard_args(Zstd
  53. REQUIRED_VARS
  54. Zstd_LIBRARY
  55. Zstd_INCLUDE_DIR
  56. )
  57. if(Zstd_FOUND)
  58. set(Zstd_LIBRARIES ${Zstd_LIBRARY})
  59. set(Zstd_INCLUDE_DIRS ${Zstd_INCLUDE_DIR})
  60. endif()
  61. mark_as_advanced(Zstd_INCLUDE_DIRS Zstd_LIBRARIES)