mirror of
https://github.com/qicosmos/rest_rpc.git
synced 2026-08-29 16:40:48 +08:00
20 lines
443 B
CMake
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) |