From 51441ff6e3733cc076f59c6da3831e3b5c240e14 Mon Sep 17 00:00:00 2001 From: oxmox Date: Sat, 4 Feb 2023 01:56:09 +0100 Subject: [PATCH] actually use the in-tree, patched version of nng --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d6233c1..ca32870 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,8 +1,8 @@ -find_package(nng CONFIG REQUIRED) find_package(Threads) add_executable(doompanning doompanning.cc) target_link_libraries(doompanning - PRIVATE nng::nng + PRIVATE nng PRIVATE spdlog::spdlog + PRIVATE Threads::Threads ) target_compile_features(doompanning PRIVATE cxx_std_17)