FindBrotli.cmake 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # ***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which you should
  11. # have received as part of this distribution. The terms are also available at
  12. # https://curl.haxx.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 furnished
  16. # 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. # ##############################################################################
  22. include(FindPackageHandleStandardArgs)
  23. find_path(BROTLI_INCLUDE_DIR "brotli/decode.h")
  24. find_library(BROTLICOMMON_LIBRARY NAMES brotlicommon brotlicommon-static)
  25. find_library(BROTLIDEC_LIBRARY NAMES brotlidec brotlidec-static)
  26. find_library(BROTLIENC_LIBRARY NAMES brotlienc brotlienc-static)
  27. find_package_handle_standard_args(Brotli
  28. REQUIRED_VARS
  29. BROTLIDEC_LIBRARY
  30. BROTLIENC_LIBRARY
  31. BROTLICOMMON_LIBRARY
  32. BROTLI_INCLUDE_DIR
  33. FAIL_MESSAGE
  34. "Could NOT find BROTLI")
  35. set(BROTLI_INCLUDE_DIRS ${BROTLI_INCLUDE_DIR})
  36. set(BROTLI_LIBRARIES ${BROTLIDEC_LIBRARY}
  37. ${BROTLIENC_LIBRARY} ${BROTLICOMMON_LIBRARY})
  38. if(Brotli_FOUND)
  39. add_library(Brotli_lib INTERFACE IMPORTED)
  40. set_target_properties(Brotli_lib
  41. PROPERTIES INTERFACE_INCLUDE_DIRECTORIES
  42. "${BROTLI_INCLUDE_DIRS}"
  43. INTERFACE_LINK_LIBRARIES
  44. "${BROTLI_LIBRARIES}")
  45. endif(Brotli_FOUND)