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 15# The CMakeLists.txt for re2 doesn't propagate include directories 16# transitively so `_gRPC_RE2_INCLUDE_DIR` should be set for gRPC 17# to find header files. 18 19if(gRPC_RE2_PROVIDER STREQUAL "module") 20 if(NOT RE2_ROOT_DIR) 21 set(RE2_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/third_party/re2) 22 endif() 23 if(EXISTS "${RE2_ROOT_DIR}/CMakeLists.txt") 24 # Explicitly disable BUILD_TESTING to avoid re2's CMakeLists.txt triggering https://github.com/grpc/grpc/issues/23586 25 option(BUILD_TESTING "re2.cmake explicitly disabled CTest's BUILD_TESTING option." OFF) 26 27 include_directories("${RE2_ROOT_DIR}") 28 add_subdirectory(${RE2_ROOT_DIR} third_party/re2) 29 30 if(TARGET re2) 31 set(_gRPC_RE2_LIBRARIES re2) 32 set(_gRPC_RE2_INCLUDE_DIR "${RE2_ROOT_DIR}" "${CMAKE_CURRENT_BINARY_DIR}/third_party/re2") 33 if(gRPC_INSTALL AND _gRPC_INSTALL_SUPPORTED_FROM_MODULE) 34 install(TARGETS re2 EXPORT gRPCTargets 35 RUNTIME DESTINATION ${gRPC_INSTALL_BINDIR} 36 LIBRARY DESTINATION ${gRPC_INSTALL_LIBDIR} 37 ARCHIVE DESTINATION ${gRPC_INSTALL_LIBDIR}) 38 endif() 39 endif() 40 else() 41 message(WARNING "gRPC_RE2_PROVIDER is \"module\" but RE2_ROOT_DIR(${RE2_ROOT_DIR}) is wrong") 42 endif() 43 if(gRPC_INSTALL AND NOT _gRPC_INSTALL_SUPPORTED_FROM_MODULE) 44 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.") 45 set(gRPC_INSTALL FALSE) 46 endif() 47elseif(gRPC_RE2_PROVIDER STREQUAL "package") 48 find_package(re2 REQUIRED) 49 if(TARGET re2::re2) 50 set(_gRPC_RE2_LIBRARIES re2::re2) 51 endif() 52 set(_gRPC_FIND_RE2 "if(NOT re2_FOUND)\n find_package(re2)\nendif()") 53endif() 54