From e58f6aa3c7e9c4e294b2b2105eb9588181f1e36c Mon Sep 17 00:00:00 2001 From: Wouter Deconinck Date: Thu, 28 Nov 2024 07:07:14 -0600 Subject: [PATCH] fix: require podio 1.0.1 (#257) --- CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ce736d80..56da69cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,11 +22,7 @@ project(k4FWCore) find_package(ROOT COMPONENTS RIO Tree REQUIRED) find_package(Gaudi REQUIRED) - find_package(podio 0.16.3) # this will not find 1.0 and newer - if(NOT podio_FOUND) - # we try to find a newer version now - find_package(podio 1.0 REQUIRED) - endif() +find_package(podio 1.0.1 REQUIRED) find_package(EDM4HEP REQUIRED) include(cmake/Key4hepConfig.cmake)