Files
rest_rpc/examples/CMakeLists.txt
T
2025-10-16 10:17:49 +08:00

11 lines
203 B
CMake

project(example)
set(project_name test_rest_rpc)
include_directories(
"../thirdparty/asio"
"../thirdparty"
)
add_executable(server server.cpp)
add_executable(client client.cpp)