From b45f5b4c82756fc4067260a30f841de283e7ec12 Mon Sep 17 00:00:00 2001 From: Sergiu Deitsch Date: Thu, 12 Oct 2023 22:28:45 +0200 Subject: [PATCH] fix(build): raise minimum cmake version to 3.21 (#974) Linking against target objects is otherwise not possible. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 525bfcd..b6b3a1a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.16) +cmake_minimum_required (VERSION 3.21) project (glog VERSION 0.7.0 DESCRIPTION "C++ implementation of the Google logging module"