This commit is contained in:
Mario Emmenlauer 2023-10-31 13:41:34 +01:00 committed by GitHub
commit 71da5d5aff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View file

@ -60,6 +60,8 @@ if(CMAKE_PROJECT_NAME STREQUAL "gtest" OR CMAKE_PROJECT_NAME STREQUAL "googletes
# make it prominent in the GUI.
option(BUILD_SHARED_LIBS "Build shared libraries (DLLs)." OFF)
option(GTEST_HAS_ABSL "Build against Google abseil" OFF)
else()
mark_as_advanced(
@ -86,6 +88,10 @@ config_compiler_and_linker() # Defined in internal_utils.cmake.
# alias libraries.
set(cmake_package_name GTest CACHE INTERNAL "")
if(GTEST_HAS_ABSL)
find_package(absl REQUIRED)
endif()
# Create the CMake package file descriptors.
if (INSTALL_GTEST)
include(CMakePackageConfigHelpers)
@ -150,6 +156,10 @@ target_include_directories(gtest_main SYSTEM INTERFACE
if(CMAKE_SYSTEM_NAME MATCHES "QNX")
target_link_libraries(gtest PUBLIC regex)
endif()
if(GTEST_HAS_ABSL)
target_compile_definitions(gtest PUBLIC GTEST_HAS_ABSL=1)
target_link_libraries(gtest PUBLIC absl::strings absl::stacktrace absl::symbolize absl::failure_signal_handler absl::base)
endif()
target_link_libraries(gtest_main PUBLIC gtest)
########################################################################

View file

@ -4,6 +4,9 @@ if (@GTEST_HAS_PTHREAD@)
set(THREADS_PREFER_PTHREAD_FLAG @THREADS_PREFER_PTHREAD_FLAG@)
find_dependency(Threads)
endif()
if (@GTEST_HAS_ABSL@)
find_dependency(absl)
endif()
include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake")
check_required_components("@project_name@")