From 9b05985459961ae53c22b9157f140222611af11e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 25 Nov 2024 13:51:51 +0100 Subject: [PATCH] doc: avoid warnings about too old CMake version in Getting Started guide. --- doc/getting-started.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/getting-started.dox b/doc/getting-started.dox index 291974d55..41ee7a0a9 100644 --- a/doc/getting-started.dox +++ b/doc/getting-started.dox @@ -68,7 +68,7 @@ you actually use are built (and excluding the subdirectory from the `install` target as well). @code{.cmake} -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.5...3.20) project(MyApplication) set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/modules/" ${CMAKE_MODULE_PATH})