From d64badf4bdb3e34819acae83e86f84dc0cc5562c Mon Sep 17 00:00:00 2001 From: Roman Nikonov Date: Tue, 14 Jan 2025 20:38:05 +0100 Subject: [PATCH] try linking against spdlog --- antigo/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/antigo/CMakeLists.txt b/antigo/CMakeLists.txt index 85d9655360..c7ed507f6c 100644 --- a/antigo/CMakeLists.txt +++ b/antigo/CMakeLists.txt @@ -19,4 +19,8 @@ apply_default_settings(TARGETS antigo) find_package(cpptrace CONFIG REQUIRED) target_link_libraries(antigo PRIVATE cpptrace::cpptrace) +# XXX remove me +find_package(spdlog CONFIG REQUIRED) +target_link_libraries(antigo PUBLIC spdlog::spdlog) + add_subdirectory(unit)