From 4604aee20243d03805d989e4e45f8683ca302674 Mon Sep 17 00:00:00 2001 From: Mathis Logemann Date: Wed, 17 Mar 2021 23:06:49 +0100 Subject: [PATCH] 3.15 is the minium supported target. tested. --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 30a1c5973..a2b3c1471 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,6 @@ -cmake_minimum_required(VERSION 3.15.0) +cmake_minimum_required(VERSION 3.15) +# 3.15 is required since the Boost::XXXX targets was first added. https://cmake.org/cmake/help/latest/module/FindBoost.html#imported-targets +# 3.14 is required since SQLite3 Module was first added. https://cmake.org/cmake/help/latest/module/FindSQLite3.html#findsqlite3 include(cmake/GetVersion.cmake) get_mapnik_version()