aboutsummaryrefslogtreecommitdiff
path: root/source/lib/proto/CMakeLists.txt
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2023-09-06 21:09:29 +0200
committerFelix Morgner <felix.morgner@gmail.com>2023-09-06 21:09:29 +0200
commit4c68156184be63e75f54f5b8b06a640d7d2a497a (patch)
tree0b97b651d1a0b4c5742e561b3a345da7e145f669 /source/lib/proto/CMakeLists.txt
parent17a3bb9337fd7e4a57354ed5359e449d5ab1388c (diff)
downloadwanda-4c68156184be63e75f54f5b8b06a640d7d2a497a.tar.xz
wanda-4c68156184be63e75f54f5b8b06a640d7d2a497a.zip
deps: remove asio remnants and fix fmt
Diffstat (limited to 'source/lib/proto/CMakeLists.txt')
-rw-r--r--source/lib/proto/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/proto/CMakeLists.txt b/source/lib/proto/CMakeLists.txt
index 53aeb43..cc218ba 100644
--- a/source/lib/proto/CMakeLists.txt
+++ b/source/lib/proto/CMakeLists.txt
@@ -3,7 +3,7 @@ cmake_path(GET CMAKE_CURRENT_SOURCE_DIR STEM LIB_NAME)
file(GLOB_RECURSE LIB_HEADERS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" CONFIGURE_DEPENDS "**/*.hpp")
file(GLOB_RECURSE LIB_SOURCES RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" CONFIGURE_DEPENDS "**/*.cpp")
-find_package("fmt" REQUIRED)
+find_package("spdlog")
add_library("wanda-${LIB_NAME}"
${LIB_SOURCES}
@@ -28,7 +28,7 @@ target_compile_features("wanda-${LIB_NAME}" PUBLIC
)
target_link_libraries("wanda-${LIB_NAME}" PUBLIC
- "fmt::fmt-header-only"
+ "spdlog::spdlog_header_only"
)
install(TARGETS "wanda-${LIB_NAME}"