-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure_config.cmake
102 lines (102 loc) · 2.05 KB
/
configure_config.cmake
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
if (TARGET ch_contrib::rocksdb)
set(USE_ROCKSDB 1)
endif()
if (TARGET ch_contrib::bzip2)
set(USE_BZIP2 1)
endif()
if (TARGET ch_contrib::minizip)
set(USE_MINIZIP 1)
endif()
if (TARGET ch_contrib::snappy)
set(USE_SNAPPY 1)
endif()
if (TARGET ch_contrib::brotli)
set(USE_BROTLI 1)
endif()
if (TARGET ch_contrib::hivemetastore)
set(USE_HIVE 1)
endif()
if (TARGET ch_contrib::rdkafka)
set(USE_RDKAFKA 1)
endif()
if (TARGET OpenSSL::SSL)
set(USE_SSL 1)
endif()
if (TARGET ch_contrib::ldap)
set(USE_LDAP 1)
endif()
if (TARGET ch_contrib::grpc)
set(USE_GRPC 1)
endif()
if (TARGET ch_contrib::hdfs)
set(USE_HDFS 1)
endif()
if (TARGET ch_contrib::nuraft)
set(USE_NURAFT 1)
endif()
if (TARGET ch_contrib::icu)
set(USE_ICU 1)
endif()
if (TARGET ch_contrib::simdjson)
set(USE_SIMDJSON 1)
endif()
if (TARGET ch_contrib::rapidjson)
set(USE_RAPIDJSON 1)
endif()
if (TARGET ch_contrib::azure_sdk)
set(USE_AZURE_BLOB_STORAGE 1)
endif()
if (TARGET ch_contrib::amqp_cpp)
set(USE_AMQPCPP 1)
endif()
if (TARGET ch_contrib::cassandra)
set(USE_CASSANDRA 1)
endif()
if (TARGET ch_contrib::base64)
set(USE_BASE64 1)
endif()
if (TARGET ch_contrib::yaml_cpp)
set(USE_YAML_CPP 1)
endif()
if (OS_LINUX)
set(USE_FILELOG 1)
endif()
if (TARGET ch_contrib::sqlite)
set(USE_SQLITE 1)
endif()
if (TARGET ch_contrib::libpqxx)
set(USE_LIBPQXX 1)
endif()
if (TARGET ch_contrib::krb5)
set(USE_KRB5 1)
endif()
if (TARGET ch_contrib::sentry)
set(USE_SENTRY 1)
endif()
if (TARGET ch_contrib::datasketches)
set(USE_DATASKETCHES 1)
endif()
if (TARGET ch_contrib::aws_s3)
set(USE_AWS_S3 1)
endif()
if (TARGET ch_contrib::mariadbclient) # ch::mysqlxx
set(USE_MYSQL 1)
endif()
if (ENABLE_NLP)
set(USE_NLP 1)
endif()
if (TARGET ch_contrib::llvm)
set(USE_EMBEDDED_COMPILER 1)
endif()
if (TARGET ch_contrib::unixodbc)
set(USE_ODBC 1)
endif()
if (TARGET ch_contrib::replxx)
set(USE_REPLXX 1)
endif()
if (TARGET ch_contrib::cpuid)
set(USE_CPUID 1)
endif()
if (TARGET ch_contrib::jemalloc)
set(USE_JEMALLOC 1)
endif()