mirror of
https://github.com/qicosmos/rest_rpc.git
synced 2026-08-29 16:40:48 +08:00
15 lines
285 B
CMake
15 lines
285 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_rest_rpc.cpp
|
|
main.cpp
|
|
)
|
|
|
|
add_test(NAME ${project_name} COMMAND test_rest_rpc)
|