Skip to content

Commit

Permalink
Move DD4hep up in CMakeLists, remove Boost (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell authored Dec 13, 2023
1 parent d44c21a commit 61f4a21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 24 deletions.
24 changes: 2 additions & 22 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,31 +38,11 @@ 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(EDM4HEP)
if(EDM4HEP_FOUND)
message(STATUS "EDM4HEP package found!")
endif()
find_package(DD4hep)
if(DD4HEP_FOUND)
message(STATUS "DD4HEP package found!")
endif()
find_package(DD4hep REQUIRED)
find_package(EDM4HEP REQUIRED)

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
2 changes: 0 additions & 2 deletions src/k4clue/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ limitations under the License.
]]

# CLUE as Gaudi algorithm
find_package(k4FWCore)
find_package(EDM4HEP)

gaudi_add_module(ClueGaudiAlgorithmWrapper
SOURCES
Expand Down

0 comments on commit 61f4a21

Please sign in to comment.