forked from sogou/srpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists_Headers.txt
54 lines (49 loc) · 1.1 KB
/
CMakeLists_Headers.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
cmake_minimum_required(VERSION 3.6)
set(SRC_HEADERS
src/compress/rpc_compress.h
src/compress/rpc_compress_gzip.h
src/message/rpc_message.h
src/message/rpc_message_srpc.h
src/message/rpc_message_thrift.h
src/message/rpc_message_brpc.h
src/message/rpc_message_trpc.h
src/thrift/rpc_thrift_buffer.h
src/thrift/rpc_thrift_enum.h
src/thrift/rpc_thrift_idl.h
src/thrift/rpc_thrift_idl.inl
src/module/rpc_span_policies.h
src/module/rpc_module_span.h
src/module/rpc_module.h
src/module/rpc_filter.h
src/rpc_basic.h
src/rpc_buffer.h
src/rpc_client.h
src/rpc_context.h
src/rpc_context.inl
src/rpc_global.h
src/rpc_options.h
src/rpc_server.h
src/rpc_service.h
src/rpc_task.inl
src/rpc_types.h
src/rpc_zero_copy_stream.h
src/rpc_define.h
)
set(COMPRESS_HEADERS
third_party/snappy/snappy.h
third_party/snappy/snappy-c.h
third_party/snappy/snappy-sinksource.h
third_party/snappy/snappy-stubs-public.h
third_party/lz4/lib/lz4.h
third_party/lz4/lib/lz4frame.h
)
if(NOT VCPKG_TOOLCHAIN)
set(INCLUDE_HEADERS
${SRC_HEADERS}
${COMPRESS_HEADERS}
)
else()
set(INCLUDE_HEADERS
${SRC_HEADERS}
)
endif()