2023-11-03 11:43:34 +00:00
|
|
|
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
|
2019-09-07 10:03:22 +00:00
|
|
|
|
|
|
|
set(TDNET_SOURCE
|
|
|
|
td/net/FdListener.cpp
|
|
|
|
td/net/TcpListener.cpp
|
|
|
|
td/net/UdpServer.cpp
|
|
|
|
|
|
|
|
td/net/FdListener.h
|
|
|
|
td/net/TcpListener.h
|
|
|
|
td/net/UdpServer.h
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(tdnet STATIC ${TDNET_SOURCE})
|
|
|
|
target_include_directories(tdnet PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
|
|
|
|
target_link_libraries(tdnet PUBLIC tdactor)
|
|
|
|
|
|
|
|
add_executable(tcp_ping_pong example/tcp_ping_pong.cpp)
|
|
|
|
target_link_libraries(tcp_ping_pong PRIVATE tdactor tdnet)
|
|
|
|
|
|
|
|
add_executable(udp_ping_pong example/udp_ping_pong.cpp)
|
|
|
|
target_link_libraries(udp_ping_pong PRIVATE tdactor tdnet)
|
|
|
|
|
|
|
|
set(NET_TEST_SOURCE
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test/net-test.cpp
|
|
|
|
PARENT_SCOPE
|
|
|
|
)
|