Skip to content

Commit

Permalink
Move DD4hep up, remove Boost
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Dec 13, 2023
1 parent d44c21a commit 40123f3
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 40123f3

Please sign in to comment.