IAP GITLAB

Skip to content
Snippets Groups Projects

Draft: Eisvogel integration

Closed Philipp Windischhofer requested to merge eisvogel into master
Compare and
39 files
+ 5022
36
Compare changes
  • Side-by-side
  • Inline
Files
39
@@ -13,3 +13,24 @@ endif()
install (
TARGETS c8_air_shower DESTINATION bin
)
# -------------------------------------------------------------------------
# To have `cmake` pick up the Eisvogel installation
# export PKG_CONFIG_PATH=/path/to/eisvogel-install/pkgconfig:${PKG_CONFIG_PATH}
find_package(PkgConfig REQUIRED)
pkg_check_modules(EISVOGEL REQUIRED IMPORTED_TARGET eisvogel-corsika)
add_executable (c8_ice_shower c8_ice_shower.cpp)
target_link_libraries (c8_ice_shower CORSIKA8 PkgConfig::EISVOGEL)
install (
TARGETS c8_ice_shower DESTINATION bin
)
add_executable (c8_air_ice_shower c8_air_ice_shower.cpp)
target_link_libraries (c8_air_ice_shower CORSIKA8 PkgConfig::EISVOGEL)
install (
TARGETS c8_air_ice_shower DESTINATION bin
)
Loading