Skip to content
Snippets Groups Projects
Commit f66ed1e9 authored by Felix Weiglhofer's avatar Felix Weiglhofer
Browse files

algo: Link libfmt.

parent 7df6e179
No related branches found
No related tags found
No related merge requests found
Pipeline #22423 failed
...@@ -171,6 +171,12 @@ if(SSE_FOUND) ...@@ -171,6 +171,12 @@ if(SSE_FOUND)
list(APPEND packages SSE) list(APPEND packages SSE)
endif() endif()
#Searching for format package
find_package(fmt CONFIG REQUIRED)
if(fmt_FOUND)
list(APPEND packages fmt)
endif()
#Searching for FairMQ #Searching for FairMQ
find_package(FairMQ CONFIG REQUIRED) find_package(FairMQ CONFIG REQUIRED)
......
...@@ -71,6 +71,7 @@ target_link_libraries(Algo ...@@ -71,6 +71,7 @@ target_link_libraries(Algo
PUBLIC OnlineData PUBLIC OnlineData
ROOT::GenVector ROOT::GenVector
GSL GSL
fmt::fmt
Boost::program_options Boost::program_options
Boost::filesystem Boost::filesystem
xpu xpu
......
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