Compare commits

...

1 Commits

Author SHA1 Message Date
a2e8997090 change spdlog library name 2021-06-09 15:33:06 -04:00

View File

@@ -6,10 +6,10 @@ add_compile_options("-std=c++14")
include_directories("/home/nam/sw/include")
add_library(channel STATIC channel.cc)
find_library(SPDLOG_LIBRARY
find_library(SPDLOG
NAMES spdlog
HINTS "/home/nam/sw/lib"
)
add_executable(${TARGET} client.cc)
target_link_libraries(${TARGET} channel ${SPDLOG_LIBRARY})
target_link_libraries(${TARGET} channel ${SPDLOG})