From 0fae26f108843d5286b7f280b16b36f044de3d82 Mon Sep 17 00:00:00 2001 From: Cosmin Date: Thu, 25 Jun 2026 22:54:47 +0300 Subject: [PATCH] Update CMake minimum version to 3.10 to remove warnings on CMake >= 4.3 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 44dba63..4fb6111 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.2) +cmake_minimum_required(VERSION 3.10) project(msgpack11 VERSION 0.0.9 LANGUAGES CXX C) option(MSGPACK11_BUILD_TESTS "Build unit tests" ON)