aboutsummaryrefslogtreecommitdiff
path: root/CMake/README.md
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2022-09-07 06:58:32 -0700
committerCopybara-Service <copybara-worker@google.com>2022-09-07 06:59:16 -0700
commitea9c8ff5789bd3ff3ae842903f198700e4e1a11f (patch)
tree50f914a1b8dd423a815a301da3419aa994b90885 /CMake/README.md
parent308bbf300fe9332130f4784c7a91fa2ad707d6e4 (diff)
downloadabseil-ea9c8ff5789bd3ff3ae842903f198700e4e1a11f.tar.gz
abseil-ea9c8ff5789bd3ff3ae842903f198700e4e1a11f.tar.bz2
abseil-ea9c8ff5789bd3ff3ae842903f198700e4e1a11f.zip
CMake: Require at least CMake 3.10
This is the current minimum according to https://github.com/google/oss-policies-info/blob/main/foundational-cxx-support-matrix.md PiperOrigin-RevId: 472714045 Change-Id: I5930bbbc4eec4644d22bba703957d1764c2e76be
Diffstat (limited to 'CMake/README.md')
-rw-r--r--CMake/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMake/README.md b/CMake/README.md
index 0be3b926..19fb327c 100644
--- a/CMake/README.md
+++ b/CMake/README.md
@@ -39,7 +39,7 @@ section of your executable or of your library.<br>
Here is a short CMakeLists.txt example of an application project using Abseil.
```cmake
-cmake_minimum_required(VERSION 3.8.2)
+cmake_minimum_required(VERSION 3.10)
project(my_app_project)
# Pick the C++ standard to compile with.
@@ -62,7 +62,7 @@ will control Abseil library targets) is set to at least that minimum. For
example:
```cmake
-cmake_minimum_required(VERSION 3.8.2)
+cmake_minimum_required(VERSION 3.10)
project(my_lib_project)
# Leave C++ standard up to the root application, so set it only if this is the