From 856465113e1e7584a73c459f08a8013482e7072a Mon Sep 17 00:00:00 2001 From: Derek Huang Date: Mon, 16 Dec 2024 01:47:55 -0500 Subject: [PATCH] docs/quickstart-cmake.md: fix enumeration indentation + specify CMake minimum version --- docs/quickstart-cmake.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/quickstart-cmake.md b/docs/quickstart-cmake.md index 3646d9301..d1e2468b3 100644 --- a/docs/quickstart-cmake.md +++ b/docs/quickstart-cmake.md @@ -11,8 +11,8 @@ To complete this tutorial, you'll need: * A compatible operating system (e.g. Linux, macOS, Windows). * A compatible C++ compiler that supports at least C++14. -* [CMake](https://cmake.org/) and a compatible build tool for building the - project. +* [CMake](https://cmake.org/) >= 3.14 and a compatible build tool for building + the project. * Compatible build tools include [Make](https://www.gnu.org/software/make/), [Ninja](https://ninja-build.org/), and others - see @@ -45,10 +45,10 @@ Next, you'll create the `CMakeLists.txt` file and declare a dependency on GoogleTest. There are many ways to express dependencies in the CMake ecosystem but the two most common methods are -1. Using the [`find_package`](https://cmake.org/cmake/help/latest/command/find_package.html) - command -2. Using the [`FetchContent`](https://cmake.org/cmake/help/latest/module/FetchContent.html) - CMake module +1. Using the [`find_package`](https://cmake.org/cmake/help/latest/command/find_package.html) + command +2. Using the [`FetchContent`](https://cmake.org/cmake/help/latest/module/FetchContent.html) + CMake module We will cover both methods in their [respective](#using-find_package) [subsections](#using-FetchContent) as each has their