diff options
author | Copybara-Service <copybara-worker@google.com> | 2022-08-12 07:25:40 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-08-12 07:25:40 -0700 |
commit | 252bb88f1ba68be656912d073b452b019737e8e8 (patch) | |
tree | 34bb452f4d0088dda9bee17a4ad94d5f61adbb78 /CMakeLists.txt | |
parent | 697acabc5b7e28c51f7ab8d2f43d4ef4fed77f8d (diff) | |
parent | 436f267ca30dd0c8e251f3380fcd1ff98117a3e7 (diff) | |
download | abseil-252bb88f1ba68be656912d073b452b019737e8e8.tar.gz abseil-252bb88f1ba68be656912d073b452b019737e8e8.tar.bz2 abseil-252bb88f1ba68be656912d073b452b019737e8e8.zip |
Merge pull request #1249 from evanacox:master
PiperOrigin-RevId: 467204807
Change-Id: Id7949726d67a16bf2daead7503f84e8b862fdb5f
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 10acf3b7..995d90e5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,6 +70,10 @@ if((${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.8) AND (NOT ABSL_PROPAGATE_CXX_STD) message(WARNING "A future Abseil release will default ABSL_PROPAGATE_CXX_STD to ON for CMake 3.8 and up. We recommend enabling this option to ensure your project still builds correctly.") endif() +option(ABSL_USE_SYSTEM_INCLUDES + "Silence warnings in Abseil headers by marking them as SYSTEM includes" + OFF) + list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/CMake ${CMAKE_CURRENT_LIST_DIR}/absl/copts |