Skip to content
Snippets Groups Projects

rich/CMakeLists.txt: compile library against spdlog

Merged Dmitry Kalinkin requested to merge pr/rich_build_fix into master
1 file
+ 6
2
Compare changes
  • Side-by-side
  • Inline
@@ -18,8 +18,8 @@ set(algo_exe benchmark_${det_name}_reconstruction)
add_executable(${algo_exe} ${algo_exe_source})
# linking
target_link_libraries(${algo_exe}
${algo_lib}
target_link_libraries(${algo_lib}
PUBLIC
ROOT::Core
ROOT::Hist
podio::podio
@@ -28,6 +28,10 @@ target_link_libraries(${algo_exe}
EDM4HEP::edm4hep
spdlog::spdlog
)
target_link_libraries(${algo_exe}
PRIVATE
${algo_lib}
)
# installation
install(FILES ${algo_headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${CMAKE_PROJECT_NAME}/${det_name})
Loading