diff options
author | Benjamin Buch <bebuch@users.noreply.github.com> | 2023-07-07 14:14:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-07 14:14:41 +0200 |
commit | c3db833081448eb2675481a12578d3fc204b0237 (patch) | |
tree | 555eadbeda1d75cbf92335fe7bdfe9636767e0e2 /CMakeLists.txt | |
parent | 93ef827f6160dd41e11042ce638e052272f77d7b (diff) | |
download | abseil-c3db833081448eb2675481a12578d3fc204b0237.tar.gz abseil-c3db833081448eb2675481a12578d3fc204b0237.tar.bz2 abseil-c3db833081448eb2675481a12578d3fc204b0237.zip |
enable CMP0141 to allow user CMAKE_MSVC_DEBUG_INFORMATION_FORMAT
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ae799811..16915a14 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,6 +48,11 @@ if (POLICY CMP0067) cmake_policy(SET CMP0067 NEW) endif (POLICY CMP0067) +# Allow the user to specify the CMAKE_MSVC_DEBUG_INFORMATION_FORMAT +if (POLICY CMP0141) + cmake_policy(SET CMP0141 NEW) +endif (POLICY CMP0141) + project(absl LANGUAGES CXX) include(CTest) |