mirror of
https://github.com/qicosmos/rest_rpc.git
synced 2026-08-29 08:34:47 +08:00
update
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
cmake_minimum_required(VERSION 3.7)
|
||||
project(test_client)
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -std=c++17")
|
||||
|
||||
find_package(Boost COMPONENTS system REQUIRED)
|
||||
include_directories(
|
||||
"../msgpack/include"
|
||||
)
|
||||
|
||||
add_executable(test_client main.cpp)
|
||||
target_link_libraries(test_client ${Boost_LIBRARIES})
|
||||
@@ -0,0 +1,12 @@
|
||||
cmake_minimum_required(VERSION 3.7)
|
||||
project(rest_rpc)
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread -std=c++17")
|
||||
|
||||
find_package(Boost COMPONENTS system REQUIRED)
|
||||
include_directories(
|
||||
"./msgpack/include"
|
||||
)
|
||||
|
||||
add_executable(rest_rpc main.cpp)
|
||||
target_link_libraries(rest_rpc ${Boost_LIBRARIES})
|
||||
Reference in New Issue
Block a user