From 63a561509b2c6a9801f0ad21156bfaca192a05c5 Mon Sep 17 00:00:00 2001 From: "Maarten L. Hekkelman" Date: Tue, 14 Apr 2026 09:42:25 +0200 Subject: [PATCH] Increase required libcifpp version --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ae220d..f8903ee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -118,14 +118,14 @@ CPMFindPackage( EXCLUDE_FROM_ALL YES) # No longer using CPM for libcifpp. It is now simply required to install it first. -find_package(cifpp 10.0.1 QUIET) +find_package(cifpp 10.0.2 QUIET) if(NOT (cifpp_FOUND OR TARGET cifpp)) # message(FATAL_ERROR "Could not find libcifpp. Please make sure you install libcifpp first, code can be found at https://github.com/PDB-REDO/libcifpp") CPMAddPackage( NAME cifpp GIT_REPOSITORY "https://github.com/PDB-REDO/libcifpp" - GIT_TAG v10.0.1 + GIT_TAG v10.0.2 EXCLUDE_FROM_ALL YES) endif()