mirror of
https://github.com/qicosmos/rest_rpc.git
synced 2026-08-29 08:34:47 +08:00
16 lines
324 B
CMake
16 lines
324 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_test(NAME ${project_name} COMMAND test_rest_rpc)
|