-
Notifications
You must be signed in to change notification settings - Fork 53
/
CMakeLists.txt
46 lines (37 loc) · 1.13 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
project(grpc-cmake-example)
cmake_minimum_required(VERSION 3.2)
add_compile_options(-std=c++11)
# GRPC and Protocol Buffers libraries location
list(APPEND CMAKE_PREFIX_PATH "/opt/grpc" "/opt/protobuf")
# Cmake find modules
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
find_package(Protobuf REQUIRED)
find_package(GRPC REQUIRED)
set(PROTOS
${CMAKE_CURRENT_SOURCE_DIR}/protos/helloworld.proto
)
set(PROTO_SRC_DIR ${CMAKE_CURRENT_BINARY_DIR}/proto-src)
file(MAKE_DIRECTORY ${PROTO_SRC_DIR})
include_directories(${PROTO_SRC_DIR})
protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS ${PROTO_SRC_DIR} ${PROTOS})
grpc_generate_cpp(GRPC_SRCS GRPC_HDRS ${PROTO_SRC_DIR} ${PROTOS})
# Building server
add_executable(greeter_server
${CMAKE_CURRENT_SOURCE_DIR}/greeter_server.cc
${PROTO_SRCS}
${GRPC_SRCS}
)
target_link_libraries(greeter_server
gRPC::grpc++_reflection
protobuf::libprotobuf
)
# Building client
add_executable(greeter_client
${CMAKE_CURRENT_SOURCE_DIR}/greeter_client.cc
${PROTO_SRCS}
${GRPC_SRCS}
)
target_link_libraries(greeter_client
gRPC::grpc++_reflection
protobuf::libprotobuf
)