From f294348c8c92e3afbc85a77c3b3b65b9782e272a Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson <oscar.gustafsson@gmail.com> Date: Tue, 31 Jan 2023 10:02:27 +0100 Subject: [PATCH] Comment NOMINMAX away --- dependencies/fmt/CMakeLists.txt | 2 +- dependencies/pybind11/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dependencies/fmt/CMakeLists.txt b/dependencies/fmt/CMakeLists.txt index fda9e099..68221648 100644 --- a/dependencies/fmt/CMakeLists.txt +++ b/dependencies/fmt/CMakeLists.txt @@ -2,7 +2,7 @@ message(STATUS "Fetching fmt...") FetchContent_Declare(fmt GIT_REPOSITORY https://github.com/fmtlib/fmt - GIT_TAG d141cdbeb0fb422a3fb7173b285fd38e0d1772dc # 8.0.1 + GIT_TAG 9.1.0 ) FetchContent_MakeAvailable(fmt) diff --git a/dependencies/pybind11/CMakeLists.txt b/dependencies/pybind11/CMakeLists.txt index dea520bc..0d1b685b 100644 --- a/dependencies/pybind11/CMakeLists.txt +++ b/dependencies/pybind11/CMakeLists.txt @@ -2,6 +2,6 @@ message(STATUS "Fetching pybind11...") FetchContent_Declare(pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11 - GIT_TAG f7b499615e14d70ab098a20deb0cdb3889998a1a # 2.8.1 + GIT_TAG v2.10.3 ) FetchContent_MakeAvailable(pybind11) -- GitLab