From 0c83c631c54c50cf93335ebff2f47ad40f81a861 Mon Sep 17 00:00:00 2001 From: Sean Robinson Date: Thu, 6 Oct 2022 09:19:10 -0700 Subject: [PATCH] Update CMake version in README example for FetchContent FetchContent_MakeAvailable was added in CMake v3.14. Also includes end-of-line whitespace clean-ups. Signed-off-by: Sean Robinson --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b63101..e03573e 100644 --- a/README.md +++ b/README.md @@ -1092,7 +1092,7 @@ foo@bar:/home/dev/$ ./test --bar=BAR --foo Use the latest argparse in your CMake project without copying any content. ```cmake -cmake_minimum_required(VERSION 3.11) +cmake_minimum_required(VERSION 3.14) PROJECT(myproject)