forked from morganstanley/modern-cpp-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
284 lines (225 loc) · 9.2 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
cmake_minimum_required(VERSION "3.8")
project("Modern C++ Kafka API" VERSION 1.0.0)
get_property(parent_directory DIRECTORY PROPERTY PARENT_DIRECTORY)
if (NOT parent_directory)
set(cppkafka_master_project ON)
# Use Strict Options
if ((CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR (CMAKE_CXX_COMPILER_ID STREQUAL "GNU"))
add_compile_options("-Wall" "-Werror" "-Wextra" "-Wshadow" "-Wno-unused-result")
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif ()
if (CMAKE_CXX_STANDARD EQUAL 14)
add_compile_options("-Wno-maybe-uninitialized")
endif ()
endif ()
option(CPPKAFKA_ENABLE_TESTS "Generate the test targets" ${cppkafka_master_project})
include(CheckCXXCompilerFlag)
include(CMakePushCheckState)
#---------------------------
# C++17 (by default)
#---------------------------
if (NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 17)
endif ()
set(CMAKE_CXX_STANDARD_REQUIRED False)
#---------------------------
# Check Dependencies
#---------------------------
if (NOT BUILD_OPTION_DOC_ONLY)
#---------------------------
# librdkafka library
#---------------------------
if (DEFINED ENV{LIBRDKAFKA_ROOT})
set(LIBRDKAFKA_INCLUDE_DIR $ENV{LIBRDKAFKA_ROOT}/include)
set(LIBRDKAFKA_LIBRARY_DIR $ENV{LIBRDKAFKA_ROOT}/lib)
else ()
set(LIBRDKAFKA_INCLUDE_DIR /usr/local/include)
set(LIBRDKAFKA_LIBRARY_DIR /usr/local/lib)
endif ()
if (EXISTS "${LIBRDKAFKA_INCLUDE_DIR}/librdkafka/rdkafka.h")
message(STATUS "librdkafka include directory: ${LIBRDKAFKA_INCLUDE_DIR}")
else ()
message(FATAL_ERROR "Could not find headers: librdkafka!")
endif ()
if (EXISTS "${LIBRDKAFKA_LIBRARY_DIR}/librdkafka.a" OR EXISTS "${LIBRDKAFKA_LIBRARY_DIR}/rdkafka.lib" )
message(STATUS "librdkafka library directory: ${LIBRDKAFKA_LIBRARY_DIR}")
else ()
message(FATAL_ERROR "Could not find library: librdkafka!")
endif ()
#---------------------------
# pthread library (for linux only)
#---------------------------
if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
find_library(PTHREAD_LIB pthread)
if (PTHREAD_LIB)
message(STATUS "pthread library: ${PTHREAD_LIB}")
else ()
message(FATAL_ERROR "Could not find library: pthread!")
endif ()
endif ()
#---------------------------
# sasl library
#---------------------------
if (DEFINED ENV{SASL_LIBRARYDIR})
set(SASL_LIBRARYDIR $ENV{SASL_LIBRARYDIR})
link_directories(${SASL_LIBRARYDIR})
message(STATUS "sasl2 library directory: ${SASL_LIBRARYDIR}")
endif ()
if (DEFINED ENV{SASL_LIBRARY})
set(SASL_LIBRARY $ENV{SASL_LIBRARY})
message(STATUS "sasl2 library: ${SASL_LIBRARY}")
endif ()
#---------------------------
# boost headers (for C++14 support)
#---------------------------
if (CMAKE_CXX_STANDARD EQUAL 14)
if (DEFINED ENV{BOOST_ROOT})
set(Boost_INCLUDE_DIRS $ENV{BOOST_ROOT}/include)
else ()
find_package(Boost)
if (NOT Boost_FOUND)
message(FATAL_ERROR "Cound not find library: boost!")
endif ()
endif ()
include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
endif ()
endif ()
#---------------------------
# Build Option: UT stubs
#---------------------------
if (BUILD_OPTION_ENABLE_UT_STUBS)
add_definitions(-DKAFKA_API_ENABLE_UNIT_TEST_STUBS)
endif ()
#---------------------------
# Build Option: clang-tidy
#---------------------------
option(BUILD_OPTION_CLANG_TIDY "Build with clang-tidy enabled" OFF)
if (BUILD_OPTION_CLANG_TIDY)
find_program(CLANG_TIDY_EXE NAMES "clang-tidy")
if (CLANG_TIDY_EXE)
message(STATUS "Use clang-tidy: ${CLANG_TIDY_EXE}")
set(CMAKE_CXX_CLANG_TIDY clang-tidy -warnings-as-errors=* -header-filter=.*)
else ()
message(FATAL_ERROR "The clang-tidy executable not found!")
endif ()
else ()
message(STATUS "With NO clang-tidy build option")
endif ()
#---------------------------
# Build Option: ASAN
#---------------------------
option(BUILD_OPTION_USE_ASAN "Build with Address Sanitizer (ASAN) enabled" OFF)
if (BUILD_OPTION_USE_ASAN)
check_cxx_compiler_flag("-fsanitize=address" HAS_ASAN)
CMAKE_PUSH_CHECK_STATE(RESET)
# Make check_cxx_compiler_flag pass required flags to linker as well:
set(CMAKE_REQUIRED_FLAGS "-fsanitize=address -static-libasan")
check_cxx_compiler_flag("-fsanitize=address -static-libasan" HAS_ASAN_NEEDS_LIB)
CMAKE_POP_CHECK_STATE()
if (HAS_ASAN)
add_compile_options("-fsanitize=address")
add_link_options("-fsanitize=address")
elseif (HAS_ASAN_NEEDS_LIB)
add_compile_options("-fsanitize=address" "-static-libasan")
add_link_options("-fsanitize=address" "-static-libasan")
else ()
message(FATAL_ERROR "Address Sanitizer requested by BUILD_OPTION_USE_ASAN, but appears to be not supported on this platform")
endif ()
set(MEMORYCHECK_TYPE AddressSanitizer)
message(STATUS "Use Address Sanitizer")
endif ()
#---------------------------
# Build Option: TSAN
#---------------------------
option(BUILD_OPTION_USE_TSAN "Build with Thread Sanitizer (TSAN) enabled" OFF)
if (BUILD_OPTION_USE_TSAN)
check_cxx_compiler_flag("-fsanitize=thread" HAS_TSAN)
CMAKE_PUSH_CHECK_STATE(RESET)
# Make check_cxx_compiler_flag pass required flags to linker as well:
set(CMAKE_REQUIRED_FLAGS "-fsanitize=thread -static-libtsan")
check_cxx_compiler_flag("-fsanitize=thread -static-libtsan" HAS_TSAN_NEEDS_LIB)
CMAKE_POP_CHECK_STATE()
if (HAS_TSAN)
add_compile_options("-fsanitize=thread")
add_link_options("-fsanitize=thread")
elseif (HAS_TSAN_NEEDS_LIB)
add_compile_options("-fsanitize=thread" "-static-libtsan")
add_link_options("-fsanitize=thread" "-static-libtsan")
else ()
message(FATAL_ERROR "Thread Sanitizer requested by BUILD_OPTION_USE_TSAN, but appears to be not supported on this platform")
endif ()
set(MEMORYCHECK_TYPE ThreadSanitizer)
message(STATUS "Use Thread Sanitizer")
endif ()
#---------------------------
# Build Option: UBSAN
#---------------------------
option(BUILD_OPTION_USE_UBSAN "Build with Undefined Behavior Sanitizer (UBSAN) enabled" OFF)
if (BUILD_OPTION_USE_UBSAN)
check_cxx_compiler_flag("-fsanitize=undefined" HAS_UBSAN)
CMAKE_PUSH_CHECK_STATE(RESET)
# Make check_cxx_compiler_flag pass required flags to linker as well:
set(CMAKE_REQUIRED_FLAGS "-fsanitize=undefined -static-libubsan")
check_cxx_compiler_flag("-fsanitize=undefined -static-libubsan" HAS_UBSAN_NEEDS_LIB)
CMAKE_POP_CHECK_STATE()
if (HAS_UBSAN_NEEDS_LIB)
add_compile_options("-fsanitize=undefined" "-static-libubsan")
add_link_options("-fsanitize=undefined" "-static-libubsan")
elseif (HAS_UBSAN)
add_compile_options("-fsanitize=undefined")
add_link_options("-fsanitize=undefined")
else ()
message(FATAL_ERROR "Undefined Behavior Sanitizer requested by BUILD_OPTION_USE_UBSAN, but appears to be not supported on this platform")
endif ()
message(STATUS "Use Undefined Behavior Sanitizer")
endif ()
#---------------------------
# Build Option: generate doc
#---------------------------
option(BUILD_OPTION_GEN_DOC "Generate html files for doxygen/markdown doc" OFF)
#---------------------------
# Build Option: generate coverage report
#---------------------------
option(BUILD_OPTION_GEN_COVERAGE "Generate code coverage report" OFF)
if (BUILD_OPTION_GEN_COVERAGE)
check_cxx_compiler_flag("-fprofile-instr-generate -fcoverage-mapping" HAS_CLANG_COV)
if (HAS_CLANG_COV)
add_compile_options("-fprofile-instr-generate" "-fcoverage-mapping")
add_link_options("-fprofile-instr-generate" "-fcoverage-mapping")
add_custom_target(coverage_init
COMMENT "Initialize coverage counters"
COMMAND "rm" "-f" "tests/unit/default.profraw" "tests/default.profdata"
)
add_custom_target(coverage
COMMENT "Generate coverage report"
COMMAND "llvm-profdata" "merge" "-sparse" "tests/unit/default.profraw"
"-o" "tests/default.profdata"
COMMAND "llvm-cov" "show" "-format" "html" "-instr-profile" "tests/default.profdata" "tests/unit/kafka-unit-test"
">" "coverage_report.html"
COMMAND "echo" "Coverage report generated: coverage_report.html"
)
else ()
message(FATAL_ERROR "Coverage report requrested by BUILD_OPTION_GEN_COVERAGE, but only supported with Clang build")
endif ()
message(STATUS "Enable code coverage data generation")
endif ()
#---------------------------
# Build Sub-directories
#---------------------------
if (BUILD_OPTION_DOC_ONLY)
add_subdirectory("doc")
else ()
if (BUILD_OPTION_GEN_DOC)
add_subdirectory("doc")
endif ()
add_subdirectory("include")
if (CPPKAFKA_ENABLE_TESTS)
include(CTest)
add_subdirectory("tests")
endif()
if (cppkafka_master_project)
add_subdirectory("tools")
add_subdirectory("examples")
endif()
endif ()