From 40123f31978adb08f8441199b2d021fc67d02724 Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Wed, 13 Dec 2023 16:46:36 +0100 Subject: [PATCH] Move DD4hep up, remove Boost --- CMakeLists.txt | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d0527b..471e25d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,31 +38,14 @@ if(NOT CMAKE_CXX_STANDARD MATCHES "17|20") message(FATAL_ERROR "Unsupported C++ standard: ${CMAKE_CXX_STANDARD}") endif() -find_package(Boost REQUIRED) -if(Boost_FOUND) - message(STATUS "Boost package found!") -endif() - +find_package(DD4hep REQUIRED) find_package(EDM4HEP) if(EDM4HEP_FOUND) message(STATUS "EDM4HEP package found!") endif() -find_package(DD4hep) -if(DD4HEP_FOUND) - message(STATUS "DD4HEP package found!") -endif() find_package(k4FWCore REQUIRED) -if(k4FWCore_FOUND) - message(STATUS "k4FWCore package found!") -endif() find_package(Gaudi REQUIRED) -if(Gaudi_FOUND) - message(STATUS "Gaudi package found!") -endif() - -#gaudi_install(PYTHON) -#gaudi_install(SCRIPTS) include(CTest)