Files
rest_rpc/tests/CMakeLists.txt
T
qicosmos 8d0a65163c bench
2025-09-22 16:12:30 +08:00

20 lines
443 B
CMake

project(test_rest_rpc)
set(project_name test_rest_rpc)
include_directories(
"../thirdparty/msgpack-c/include"
"../thirdparty/asio"
)
add_executable(${project_name}
test_io_context_pool.cpp
test_rest_rpc.cpp
main.cpp
)
add_executable(test_rpc test_rest_rpc1.cpp)
add_test(NAME ${project_name} COMMAND test_rest_rpc)
#add_test(NAME test_rpc COMMAND test_rpc)
add_executable(bench bench.cpp)