-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
168 lines (143 loc) · 6.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
cmake_minimum_required(VERSION 3.12)
project(Example_gRPC
VERSION 0.1.0
DESCRIPTION "Example project showing how to build with gRPC from Conan with CMake"
HOMEPAGE_URL ""
LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
# Let Conan do it's magic.
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup(TARGETS)
# Copy relevant configuration files to the build directory.
configure_file(.editorconfig .editorconfig COPYONLY)
configure_file(.clang-format .clang-format COPYONLY)
# Command to generate C++ gRPC files.
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/generated)
if(MSVC)
set(protoc build_tools/protoc.exe)
set(grpc_plugin build_tools/grpc_cpp_plugin.exe)
else()
set(protoc build_tools/protoc)
set(grpc_plugin build_tools/grpc_cpp_plugin)
endif()
set(hw_protos helloworld.proto)
set(hw_proto_srcs "${CMAKE_CURRENT_BINARY_DIR}/generated/helloworld.pb.cc")
set(hw_proto_hdrs "${CMAKE_CURRENT_BINARY_DIR}/generated/helloworld.pb.h")
set(hw_grpc_srcs "${CMAKE_CURRENT_BINARY_DIR}/generated/helloworld.grpc.pb.cc")
set(hw_grpc_hdrs "${CMAKE_CURRENT_BINARY_DIR}/generated/helloworld.grpc.pb.h")
add_custom_command(
OUTPUT "${hw_proto_srcs}" "${hw_proto_hdrs}" "${hw_grpc_srcs}" "${hw_grpc_hdrs}"
COMMAND build_tools/protoc.exe
ARGS --grpc_out "${CMAKE_CURRENT_BINARY_DIR}/generated"
--cpp_out "${CMAKE_CURRENT_BINARY_DIR}/generated"
-I "../protos"
--plugin=protoc-gen-grpc="build_tools/grpc_cpp_plugin.exe"
${hw_protos}
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/../protos/${hw_protos}
COMMENT "Invoking protoc to generate gRPC C++ files."
)
# Custom target for generating C++ gRPC files that other targets can depend on.
add_custom_target(generate_grpc_files
DEPENDS "${hw_proto_srcs}" "${hw_proto_hdrs}" "${hw_grpc_srcs}" "${hw_grpc_hdrs}"
)
# Client executable.
add_executable(client_hw)
target_include_directories(client_hw
PRIVATE src
${CMAKE_CURRENT_BINARY_DIR}/generated
)
target_sources(client_hw
PRIVATE src/client_hw/main.cpp
${hw_proto_srcs}
${hw_grpc_srcs}
)
target_link_libraries(client_hw
PRIVATE CONAN_PKG::grpc
)
add_dependencies(client_hw generate_grpc_files)
# Server executable.
add_executable(server_hw)
target_include_directories(server_hw
PRIVATE src
${CMAKE_CURRENT_BINARY_DIR}/generated
)
target_sources(server_hw
PRIVATE src/server_hw/main.cpp
${hw_proto_srcs}
${hw_grpc_srcs}
)
target_link_libraries(server_hw
PRIVATE CONAN_PKG::grpc
)
add_dependencies(server_hw generate_grpc_files)
# Options to add compiler warning flags, and turn on warnings as errors.
if(MSVC)
list(APPEND msvcCompileOptions
/MP # Enable multi-processor compilation
/experimental:external # Enable external compiler options
/external:anglebrackets # Treat all headers included via angle brackets as external headers
/external:W0 # Turn off warnings for external headers
/permissive- # Enforce standards conformance
/W4 # Enable warning level 4
/WX # Treat warnings as errors
/w14242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data
/w14254 # 'operator': conversion from 'type1' to 'type2', possible loss of data
/w14263 # 'function': member function does not override any base class virtual member function
/w14265 # 'class': class has virtual functions, but destructor is not virtual
/w14287 # 'operator': unsigned/negative constant mismatch
/w14289 # nonstandard extension used : 'var' : loop control variable declared in the for-loop is used outside the for-loop scope
/w14296 # 'operator': expression is always false
/w14311 # 'variable': pointer truncation from 'type1' to 'type2'
/w14545 # expression before comma evaluates to a function which is missing an argument list
/w14546 # function call before comma missing argument list
/w14547 # 'operator': operator before comma has no effect; expected operator with side-effect
/w14549 # 'operator': operator before comma has no effect; did you intend 'operator'?
/w14555 # expression has no effect; expected expression with side-effect
/w14640 # 'instance': construction of local static object is not thread-safe
/w14826 # Conversion from 'type1' to 'type2' is sign-extended. This may cause unexpected runtime behavior.
/w14905 # wide string literal cast to 'LPSTR'
/w14906 # string literal cast to 'LPWSTR'
/w14928 # illegal copy-initialization; more than one user-defined conversion has been implicitly applied
)
target_compile_options(client_hw PRIVATE ${msvcCompileOptions})
target_compile_options(server_hw PRIVATE ${msvcCompileOptions})
add_compile_definitions(
_WIN32_WINNT=0x0602
WIN32_LEAN_AND_MEAN
)
else()
# Common compile options for gcc and clang
list(APPEND commonCompileOptions
-Werror # Warnings as errors
-Wall # Good subset of warnings enabled
-Wextra # Additional good subset of warnings enabled
-Wpedantic # Warn if non-standard C++ is used
-Wshadow # warn the user if a variable declaration shadows one from a parent context
-Wold-style-cast # warn for c-style casts
-Wcast-align # warn for potential performance problem casts
-Wunused # warn on anything being unused
-Woverloaded-virtual # warn if you overload (not override) a virtual function
-Wconversion # warn on type conversions that may lose data
-Wsign-conversion # warn on sign conversions
-Wdouble-promotion # (GCC >= 4.6, Clang >= 3.8) warn if float is implicit promoted to double
-Wformat=2 # warn on security issues around functions that format output (ie printf)
)
if(GNU)
target_compile_options(client_hw
PRIVATE
${commonCompileOptions}
-Wduplicated-cond # (only in GCC >= 6.0) warn if if / else chain has duplicated conditions
-Wduplicated-branches # (only in GCC >= 7.0) warn if if / else branches have duplicated code
-Wlogical-op # (only in GCC) warn about logical operations being used where bitwise were probably wanted
-Wnull-dereference # (only in GCC >= 6.0) warn if a null dereference is detected
-Wuseless-cast # (only in GCC >= 4.8) warn if you perform a cast to the same type
)
elseif()
target_compile_options(client_hw
PRIVATE
${commonCompileOptions}
)
endif()
endif()