Files
rest_rpc/tests/CMakeLists.txt
T

16 lines
324 B
CMake
Raw Normal View History

2024-01-21 16:36:47 +08:00
project(test_rest_rpc)
set(project_name test_rest_rpc)
include_directories(
"../thirdparty/msgpack-c/include"
"../thirdparty/asio"
2024-01-22 11:37:03 +08:00
)
2024-01-21 16:36:47 +08:00
add_executable(${project_name}
2025-08-26 15:25:59 +08:00
test_io_context_pool.cpp
2024-01-21 16:36:47 +08:00
test_rest_rpc.cpp
main.cpp
)
add_test(NAME ${project_name} COMMAND test_rest_rpc)