Files

22 lines
386 B
CMake
Raw Permalink Normal View History

2026-07-18 14:31:15 +02:00
project(tw_chat_server_exe)
add_executable(${PROJECT_NAME}
src/ChatServerController.cpp
src/ChatServerRuntime.cpp
)
target_include_directories(${PROJECT_NAME}
PRIVATE
src/
)
target_link_libraries(${PROJECT_NAME}
PRIVATE
tw::chat::service
tw::protocol
2026-07-22 17:34:44 +02:00
tw::message_protocol
2026-07-18 14:31:15 +02:00
tw::network
2026-07-22 17:34:44 +02:00
tw::quicr
2026-07-18 14:31:15 +02:00
spdlog::spdlog
)