From ce60064c15f2ae632e6423c63eb7ab4deefbdef5 Mon Sep 17 00:00:00 2001 From: Jonas Vautherin Date: Fri, 16 Aug 2024 00:59:28 +0200 Subject: [PATCH] Fix cmake_minimum_required Using add_library with sources for interface libraries has been added in CMake 3.19 --- libs/cpp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/cpp/CMakeLists.txt b/libs/cpp/CMakeLists.txt index f97954b..7c27d48 100644 --- a/libs/cpp/CMakeLists.txt +++ b/libs/cpp/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.19) if (POLICY CMP0048) cmake_policy(SET CMP0048 NEW)