re2.cmake 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Copyright 2017 gRPC authors.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. # The CMakeLists.txt for re2 doesn't propagate include directories
  15. # transitively so `_gRPC_RE2_INCLUDE_DIR` should be set for gRPC
  16. # to find header files.
  17. if(gRPC_RE2_PROVIDER STREQUAL "module")
  18. if(NOT RE2_ROOT_DIR)
  19. set(RE2_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/third_party/re2)
  20. endif()
  21. if(EXISTS "${RE2_ROOT_DIR}/CMakeLists.txt")
  22. # Explicitly disable BUILD_TESTING to avoid re2's CMakeLists.txt triggering https://github.com/grpc/grpc/issues/23586
  23. option(BUILD_TESTING "re2.cmake explicitly disabled CTest's BUILD_TESTING option." OFF)
  24. include_directories("${RE2_ROOT_DIR}")
  25. add_subdirectory(${RE2_ROOT_DIR} third_party/re2)
  26. if(TARGET re2)
  27. set(_gRPC_RE2_LIBRARIES re2)
  28. set(_gRPC_RE2_INCLUDE_DIR "${RE2_ROOT_DIR}" "${CMAKE_CURRENT_BINARY_DIR}/third_party/re2")
  29. if(gRPC_INSTALL AND _gRPC_INSTALL_SUPPORTED_FROM_MODULE)
  30. install(TARGETS re2 EXPORT gRPCTargets
  31. RUNTIME DESTINATION ${gRPC_INSTALL_BINDIR}
  32. LIBRARY DESTINATION ${gRPC_INSTALL_LIBDIR}
  33. ARCHIVE DESTINATION ${gRPC_INSTALL_LIBDIR})
  34. endif()
  35. endif()
  36. else()
  37. message(WARNING "gRPC_RE2_PROVIDER is \"module\" but RE2_ROOT_DIR(${RE2_ROOT_DIR}) is wrong")
  38. endif()
  39. if(gRPC_INSTALL AND NOT _gRPC_INSTALL_SUPPORTED_FROM_MODULE)
  40. message(WARNING "gRPC_INSTALL will be forced to FALSE because gRPC_RE2_PROVIDER is \"module\" and CMake version (${CMAKE_VERSION}) is less than 3.13.")
  41. set(gRPC_INSTALL FALSE)
  42. endif()
  43. elseif(gRPC_RE2_PROVIDER STREQUAL "package")
  44. find_package(re2 REQUIRED)
  45. if(TARGET re2::re2)
  46. set(_gRPC_RE2_LIBRARIES re2::re2)
  47. endif()
  48. set(_gRPC_FIND_RE2 "if(NOT re2_FOUND)\n find_package(re2)\nendif()")
  49. endif()