From 9c5584956e327b1d685ffa0013ca989ecf803a08 Mon Sep 17 00:00:00 2001 From: MSuih <19759300+MSuih@users.noreply.github.com> Date: Mon, 20 Jan 2025 17:20:28 +0200 Subject: [PATCH] Update minimum pugixml version to 1.15 --- 3rdparty/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/CMakeLists.txt b/3rdparty/CMakeLists.txt index 434b870b52..3dca06c284 100644 --- a/3rdparty/CMakeLists.txt +++ b/3rdparty/CMakeLists.txt @@ -44,7 +44,7 @@ add_subdirectory(libpng EXCLUDE_FROM_ALL) # pugixml if (USE_SYSTEM_PUGIXML) - pkg_check_modules(PUGIXML REQUIRED IMPORTED_TARGET pugixml>=1.11) + pkg_check_modules(PUGIXML REQUIRED IMPORTED_TARGET pugixml>=1.15) add_library(pugixml INTERFACE) target_link_libraries(pugixml INTERFACE PkgConfig::PUGIXML) else()