CMake: Add GTEST_HAS_ABSL build option for using Absl

PiperOrigin-RevId: 482101793
Change-Id: I1bd140fd6a325f573c8a0c464e4dccd4acd0d0a3
This commit is contained in:
Abseil Team
2022-10-18 21:39:44 -07:00
committed by Copybara-Service
parent f372c76026
commit 6bad847991
2 changed files with 17 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ include(GNUInstallDirs)
#Note that googlemock target already builds googletest
option(BUILD_GMOCK "Builds the googlemock subproject" ON)
option(INSTALL_GTEST "Enable installation of googletest. (Projects embedding googletest may want to turn this OFF.)" ON)
option(GTEST_HAS_ABSL "Use Abseil and RE2. Requires Abseil and RE2 to be separately added to the build." OFF)
if(BUILD_GMOCK)
add_subdirectory( googlemock )