mirror of
https://github.com/qicosmos/rest_rpc.git
synced 2026-08-29 08:34:47 +08:00
16 lines
398 B
CMake
16 lines
398 B
CMake
project(test_rest_rpc)
|
|
set(project_name test_rest_rpc)
|
|
|
|
include_directories(
|
|
"../thirdparty/asio"
|
|
"../thirdparty"
|
|
)
|
|
|
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=thread")
|
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=thread")
|
|
|
|
add_executable(test_rest_rpc test_rest_rpc.cpp)
|
|
|
|
add_test(NAME ${project_name} COMMAND test_rest_rpc)
|
|
|
|
add_executable(bench bench.cpp) |