~aleteoryx/muditaos

ref: 652fc46c94209f2c58f18bbd359bce3bcabe6748 muditaos/module-utils/third-party/protobuf-lite.cmake -rw-r--r-- 2.1 KiB
652fc46c — Pawel Olejniczak [EGD-5369] Fix for incorrect assertions in DBServiceAPI 5 years ago
                                                                                
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
include (thirdparty)

# add sources
set (PROTOBUF_SRCDIR ${CMAKE_CURRENT_SOURCE_DIR}/protobuf/src)
set (PROTOBUF ${PROTOBUF_SRCDIR}/google/protobuf)
set (PROTOBUF_SOURCES
        ${PROTOBUF}/any_lite.cc
        ${PROTOBUF}/arena.cc
        ${PROTOBUF}/extension_set.cc
        ${PROTOBUF}/generated_enum_util.cc
        ${PROTOBUF}/generated_message_table_driven_lite.cc
        ${PROTOBUF}/generated_message_util.cc
        ${PROTOBUF}/implicit_weak_message.cc
        ${PROTOBUF}/io/coded_stream.cc
        ${PROTOBUF}/io/io_win32.cc
        ${PROTOBUF}/io/strtod.cc
        ${PROTOBUF}/io/zero_copy_stream.cc
        ${PROTOBUF}/io/zero_copy_stream_impl.cc
        ${PROTOBUF}/io/zero_copy_stream_impl_lite.cc
        ${PROTOBUF}/message_lite.cc
        ${PROTOBUF}/parse_context.cc
        ${PROTOBUF}/repeated_field.cc
        ${PROTOBUF}/stubs/bytestream.cc
        ${PROTOBUF}/stubs/common.cc
        ${PROTOBUF}/stubs/int128.cc
        ${PROTOBUF}/stubs/status.cc
        ${PROTOBUF}/stubs/statusor.cc
        ${PROTOBUF}/stubs/stringpiece.cc
        ${PROTOBUF}/stubs/stringprintf.cc
        ${PROTOBUF}/stubs/structurally_valid.cc
        ${PROTOBUF}/stubs/strutil.cc
        ${PROTOBUF}/stubs/time.cc
        ${PROTOBUF}/wire_format_lite.cc
)

# create static library for the third party
set (PROTOBUF_TARGET protobuf)
add_library (${PROTOBUF_TARGET} STATIC ${PROTOBUF_SOURCES})

# setup flags for the third party
third_party_target_setup (${PROTOBUF_TARGET})

# set compile definitions for third party libraries
target_compile_definitions (${PROTOBUF_TARGET} PUBLIC GOOGLE_PROTOBUF_NO_THREADS)

# supress warnings for protobuf
set_source_files_properties (${PROTOBUF_SOURCES}
        PROPERTIES COMPILE_FLAGS
	"-Wno-stringop-truncation \
        -Wno-stringop-overflow \
        -Wno-sign-compare \
        -Wno-type-limits  \
        -Wno-redundant-move \
        -Wno-maybe-uninitialized"
)

# add include dir
target_include_directories (${PROTOBUF_TARGET} PUBLIC ${PROTOBUF_SRCDIR})

# module-os dependency (locking support)
target_link_libraries (${RE2_TARGET} PUBLIC module-os)

# turn on optimization in debug
third_party_source_optimization (${PROTOBUF_SOURCES})