IAP GITLAB

Skip to content
Snippets Groups Projects
Commit c9cbf25a authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan: Committed by Maximilian Reininghaus
Browse files

find_package() in corsikaConfig.cmake.in

parent 19b0fce7
No related branches found
No related tags found
1 merge request!635Fix discovery of dependencies in install tree
...@@ -30,6 +30,18 @@ set (CMAKE_CXX_EXTENSIONS @CMAKE_CXX_EXTENSIONS@) ...@@ -30,6 +30,18 @@ set (CMAKE_CXX_EXTENSIONS @CMAKE_CXX_EXTENSIONS@)
set (COMPILE_OPTIONS @COMPILE_OPTIONS@) set (COMPILE_OPTIONS @COMPILE_OPTIONS@)
set (CMAKE_VERBOSE_MAKEFILE @CMAKE_VERBOSE_MAKEFILE@) set (CMAKE_VERBOSE_MAKEFILE @CMAKE_VERBOSE_MAKEFILE@)
#+++++++++++++++++++++++++++++
# external dependencies
# same list as top-level CML.txt, except for Catch2 (not needed here)
#
find_package(Boost COMPONENTS filesystem REQUIRED)
find_package(CLI11 REQUIRED)
find_package(Eigen3 REQUIRED)
find_package(spdlog REQUIRED)
find_package(yaml-cpp REQUIRED)
find_package(Arrow REQUIRED)
find_package(PROPOSAL REQUIRED)
#+++++++++++++++++++++++++++++ #+++++++++++++++++++++++++++++
# Import Pythia8 # Import Pythia8
# since we always import pythia (ExternalProject_Add) we have to # since we always import pythia (ExternalProject_Add) we have to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment