From 4d3b87eae30737aa9a1746356ad7aaf8019c22bc Mon Sep 17 00:00:00 2001 From: David Rohr Date: Wed, 10 Jul 2019 15:29:54 +0200 Subject: [PATCH] Fix missing fmt dependency --- Framework/Logger/CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Framework/Logger/CMakeLists.txt b/Framework/Logger/CMakeLists.txt index 617e4bdf57341..950dbfa04b3d4 100644 --- a/Framework/Logger/CMakeLists.txt +++ b/Framework/Logger/CMakeLists.txt @@ -10,10 +10,7 @@ o2_add_library(FrameworkLogger SOURCES src/Logger.cxx - PUBLIC_LINK_LIBRARIES FairLogger::FairLogger) # FIXME: should be - # changed to {fmt} - # once we have that - # as a dependency + PUBLIC_LINK_LIBRARIES fmt::fmt FairLogger::FairLogger) # FIXME: the NAME parameter is just there to ease the comparison with previous # test names, can be omitted later on