From 3f4f0822203fff75b168341362fba85170a47b28 Mon Sep 17 00:00:00 2001 From: sha512sum Date: Mon, 26 Aug 2024 04:55:09 +0000 Subject: [PATCH] Remove fmt::fmt from link --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1450f30..ddc7d49 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -97,11 +97,11 @@ install(TARGETS larra_xmpp if(TARGET Boost::pfr) - target_link_libraries(larra_xmpp INTERFACE fmt::fmt + target_link_libraries(larra_xmpp INTERFACE Boost::pfr utempl::utempl ${GTKMM_LIBRARIES}) else() find_package(Boost 1.85.0 REQUIRED) - target_link_libraries(larra_xmpp INTERFACE fmt::fmt + target_link_libraries(larra_xmpp INTERFACE utempl::utempl ${Boost_LIBRARIES} ${GTKMM_LIBRARIES}) endif()