This commit is contained in:
2025-02-20 18:29:09 +03:00
parent 53a16d7571
commit eba7ac39c9
3 changed files with 78 additions and 27 deletions

View File

@@ -85,6 +85,10 @@ set(CNTR_PROTO_LIB_SRC
set(CNTR_PROTO_LIB comm_proto)
add_library(${CNTR_PROTO_LIB} STATIC ${CNTR_PROTO_LIB_SRC})
set(MOUNT_SERVER_APP_SRC mount.h mount_server.cpp comm_server.h)
set(MOUNT_SERVER_APP mount_server)
add_executable(${MOUNT_SERVER_APP} ${MOUNT_SERVER_APP_SRC})
target_link_libraries(${MOUNT_SERVER_APP} ${CNTR_PROTO_LIB} spdlog::spdlog_header_only)
if (WITH_TESTS)
set(CNTR_PROTO_TEST_APP cntr_proto_test)