From a4c3475d962d444cc3c8399bfa3b1f15ab788583 Mon Sep 17 00:00:00 2001 From: Eric Norige <127622562+eanorige@users.noreply.github.com> Date: Wed, 2 Apr 2025 12:19:27 -0700 Subject: [PATCH] Update CMakeLists.txt Allow newer cmake versions; this should fix using this with new cmake that have dropped support for <3.5 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c0ef675..a2ed952 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.5) +cmake_minimum_required(VERSION 3.5...3.14) project(pybind11_json) set(PYBIND11_JSON_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include)