From 91691e943bf1bcb9b48ef07fb6ebe2445a8c6a1c Mon Sep 17 00:00:00 2001 From: Mikael Lund Date: Tue, 5 Mar 2024 12:33:28 +0100 Subject: [PATCH] Require CMake 3.5 of higher This fixes the deprecation warning as reported in #64 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7092c5a..100f493 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ # The full license is in the file LICENSE, distributed with this software. # ############################################################################ -cmake_minimum_required(VERSION 3.4.3) +cmake_minimum_required(VERSION 3.5) project(pybind11_json) set(PYBIND11_JSON_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include)