From 0ebb1cc54c4ff3e1d29dae1b9542105d24e6172f Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Mon, 15 Nov 2021 13:27:01 -0500 Subject: [PATCH] Fix linking tests due to ddcb18418 (#1769) --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index e7b97b57f..41c7aa547 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -20,7 +20,7 @@ SET(tests_headers ADD_EXECUTABLE(tests ${tests_sources} ${tests_headers}) -TARGET_LINK_LIBRARIES(tests common cppunit) +TARGET_LINK_LIBRARIES(tests common cppunit fmt) INSTALL(TARGETS tests RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)