From 5a9179be1b27542b604e96d1dcd0e554898e8027 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 2 Jul 2022 16:57:14 +0100 Subject: [PATCH] Update pybind11 to 2.9.2 pybind11 2.6.0 increased the minimum required version of CMake to 3.4. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cbe1899..3afc787 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -cmake_minimum_required (VERSION 3.1) +cmake_minimum_required (VERSION 3.4) project (libloot-python) include(ExternalProject) @@ -40,7 +40,7 @@ configure_file("${CMAKE_SOURCE_DIR}/python/setup.py" "${CMAKE_BINARY_DIR}/genera # pybind11 ####################################### -set(PYBIND11_VERSION "2.4.2") +set(PYBIND11_VERSION "2.9.2") set(PYBIND11_URL "https://github.com/pybind/pybind11/archive/v${PYBIND11_VERSION}.tar.gz") set(PYBIND11_DOWNLOAD_PATH "${EXTERNAL_PROJECTS_PATH}/pybind11-${PYBIND11_VERSION}.tar.gz") set(PYBIND11_EXTRACTED_PATH "${EXTERNAL_PROJECTS_PATH}/pybind11-${PYBIND11_VERSION}")