-
Notifications
You must be signed in to change notification settings - Fork 342
/
Copy pathCMakeLists.txt
270 lines (243 loc) · 8.01 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
# Copyright (c) 2006, 2021, Oracle and/or its affiliates.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2.0,
# as published by the Free Software Foundation.
#
# This program is also distributed with certain software (including
# but not limited to OpenSSL) that is licensed under separate terms,
# as designated in a particular file or component or in included license
# documentation. The authors of MySQL hereby grant you an additional
# permission to link the program and your derivative works with the
# separately licensed software that they have included with MySQL.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License, version 2.0, for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
ADD_WSHADOW_WARNING()
# We are not interesting in profiling clients.
DISABLE_MISSING_PROFILE_WARNING()
## Subdirectory with common client code.
ADD_SUBDIRECTORY(base)
## Subdirectory for mysqlpump code.
ADD_SUBDIRECTORY(dump)
## Subdirectory for mysql_migrate_keyring code.
ADD_SUBDIRECTORY(migrate_keyring)
MYSQL_ADD_EXECUTABLE(mysql
${CMAKE_SOURCE_DIR}/sql-common/net_ns.cc
completion_hash.cc
mysql.cc
pattern_matcher.cc
readline.cc
client_query_attributes.cc
LINK_LIBRARIES mysqlclient client_base ${EDITLINE_LIBRARY}
)
IF(NOT WITHOUT_SERVER)
MYSQL_ADD_EXECUTABLE(mysql_upgrade
upgrade/program.cc
LINK_LIBRARIES mysqlclient client_base
)
ENDIF()
MYSQL_ADD_EXECUTABLE(mysqltest
mysqltest.cc
mysqltest/error_names.cc
mysqltest/expected_errors.cc
mysqltest/expected_warnings.cc
mysqltest/logfile.cc
mysqltest/regular_expressions.cc
mysqltest/secondary_engine.cc
mysqltest/utils.cc
client_query_attributes.cc
COMPONENT Test
DEPENDENCIES GenError GenClientError
ENABLE_EXPORTS
LINK_LIBRARIES mysqlclient
)
MYSQL_ADD_EXECUTABLE(mysqlcheck
check/mysqlcheck.cc
check/mysqlcheck_core.cc
LINK_LIBRARIES mysqlclient
)
MYSQL_ADD_EXECUTABLE(mysqldump
mysqldump.cc
LINK_LIBRARIES mysqlclient
)
MYSQL_ADD_EXECUTABLE(mysqlimport
mysqlimport.cc
LINK_LIBRARIES mysqlclient
)
MYSQL_ADD_EXECUTABLE(mysqlshow
mysqlshow.cc
LINK_LIBRARIES mysqlclient
)
OPTION(WITH_JSON_BINLOG_LIBRARY
"Build and install standalone json_binlog library" OFF)
IF(WITH_JSON_BINLOG_LIBRARY)
UNSET(INSTALL_JSON_BINLOG_LIBRARY)
INSTALL(FILES
../sql/json_binary.h
DESTINATION ${INSTALL_INCLUDEDIR}
COMPONENT Development
)
ELSE()
SET(INSTALL_JSON_BINLOG_LIBRARY SKIP_INSTALL)
ENDIF()
# Set library version to match server version.
IF(WIN32)
# Windows wants only major.minor, but our MINOR_VERSION is zero anyways:
SET(json_binlog_VERSION "${MAJOR_VERSION}.${PATCH_VERSION}")
ELSE()
SET(json_binlog_VERSION "${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}")
ENDIF()
# This is a standalone library to de-serialize json data.
# The public interface is in ../sql/json_binary.h which provides functions
# for parsing binary data, and converting it to Value objects.
# There are also utility functions to convert Value objects to JSON strings.
# We add enough source files to make it a complete standalone library,
# which can be tested by our ordinary mtr tests for the 'mysqlbinlog' client.
# Some detailed interface tests are found as unit tests.
#
# Always build it, but do not *use* it for mysqlbinlog unless
# WITH_JSON_BINLOG_LIBRARY=ON
ADD_SHARED_LIBRARY(json_binlog
${CMAKE_SOURCE_DIR}/sql/json_binary.cc
${CMAKE_SOURCE_DIR}/sql/json_dom.cc
${CMAKE_SOURCE_DIR}/sql/json_syntax_check.cc
${CMAKE_SOURCE_DIR}/sql-common/sql_string.cc
COMPILE_DEFINITIONS DISABLE_PSI_MUTEX EXPORT_JSON_FUNCTIONS
DEPENDENCIES GenError
${INSTALL_JSON_BINLOG_LIBRARY}
LINK_LIBRARIES mysys
LINUX_VERSION_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR}/json_binlog.ver"
VERSION "${json_binlog_VERSION}"
NO_UNDEFINED
)
ADD_CONVENIENCE_LIBRARY(json_client_library
${CMAKE_SOURCE_DIR}/sql/json_binary.cc
${CMAKE_SOURCE_DIR}/sql/json_dom.cc
${CMAKE_SOURCE_DIR}/sql/json_syntax_check.cc
${CMAKE_SOURCE_DIR}/sql-common/sql_string.cc
COMPILE_DEFINITIONS DISABLE_PSI_MUTEX
DEPENDENCIES GenError
)
SET(JSON_BINLOG_LIBS_TO_MERGE
json_client_library
mysys
mytime
strings
)
MERGE_CONVENIENCE_LIBRARIES(json_binlog_static
${JSON_BINLOG_LIBS_TO_MERGE}
COMPONENT Development
${INSTALL_JSON_BINLOG_LIBRARY}
)
# A test executable which does nothing, except verify that symbols are visible.
# To test standalone build:
# cmake -DINSTALL_MYSQLTESTDIR=0
# make install DESTDIR=/tmp/foo
# g++ -I/tmp/foo/usr/local/mysql/include json_binlog_main.cc
# -L/tmp/foo/usr/local/mysql/lib -Wl,-R,/tmp/foo/usr/local/mysql/lib
# -ljson_binlog
MYSQL_ADD_EXECUTABLE(json_binlog_main
json_binlog_main.cc
INCLUDE_DIRECTORIES ../sql
LINK_LIBRARIES json_binlog
SKIP_INSTALL
)
# Same test executable, linked statically.
# To test standalone build:
# g++ -I/tmp/foo/usr/local/mysql/include json_binlog_main.cc
# -L/tmp/foo/usr/local/mysql/lib
# -ljson_binlog_static -lpthread
MYSQL_ADD_EXECUTABLE(json_binlog_main_static
json_binlog_main.cc
INCLUDE_DIRECTORIES ../sql
LINK_LIBRARIES json_binlog_static
SKIP_INSTALL
)
MY_CHECK_CXX_COMPILER_WARNING("-Wunused-but-set-variable" HAS_WARN_FLAG)
IF(HAS_WARN_FLAG)
TARGET_COMPILE_OPTIONS(json_binlog_main PRIVATE "${HAS_WARN_FLAG}")
TARGET_COMPILE_OPTIONS(json_binlog_main_static PRIVATE "${HAS_WARN_FLAG}")
ENDIF()
MY_CHECK_CXX_COMPILER_WARNING("-Wunused-variable" HAS_WARN_FLAG)
IF(HAS_WARN_FLAG)
TARGET_COMPILE_OPTIONS(json_binlog_main PRIVATE "${HAS_WARN_FLAG}")
TARGET_COMPILE_OPTIONS(json_binlog_main_static PRIVATE "${HAS_WARN_FLAG}")
ENDIF()
SET(MYSQLBINLOG_SOURCES
mysqlbinlog.cc
${CMAKE_SOURCE_DIR}/sql/log_event.cc
${CMAKE_SOURCE_DIR}/sql/rpl_utility.cc
${CMAKE_SOURCE_DIR}/sql/rpl_gtid_sid_map.cc
${CMAKE_SOURCE_DIR}/sql/rpl_gtid_misc.cc
${CMAKE_SOURCE_DIR}/sql/rpl_gtid_set.cc
${CMAKE_SOURCE_DIR}/sql/rpl_gtid_specification.cc
${CMAKE_SOURCE_DIR}/sql/rpl_tblmap.cc
${CMAKE_SOURCE_DIR}/sql/basic_istream.cc
${CMAKE_SOURCE_DIR}/sql/binlog_istream.cc
${CMAKE_SOURCE_DIR}/sql/binlog_reader.cc
${CMAKE_SOURCE_DIR}/sql/stream_cipher.cc
${CMAKE_SOURCE_DIR}/sql/rpl_log_encryption.cc
${CMAKE_SOURCE_DIR}/libbinlogevents/src/trx_boundary_parser.cpp
)
SET(MYSQLBINLOG_LIBRARIES
binlogevents_static
client_base
mysqlclient
)
IF(WITH_JSON_BINLOG_LIBRARY)
LIST(APPEND MYSQLBINLOG_LIBRARIES json_binlog)
ELSE()
LIST(APPEND MYSQLBINLOG_LIBRARIES json_binlog_static)
ENDIF()
MYSQL_ADD_EXECUTABLE(mysqlbinlog
${MYSQLBINLOG_SOURCES}
DEPENDENCIES GenError
LINK_LIBRARIES ${MYSQLBINLOG_LIBRARIES}
)
IF(WITH_JSON_BINLOG_LIBRARY)
IF(APPLE)
ADD_CUSTOM_COMMAND(TARGET mysqlbinlog POST_BUILD
COMMAND install_name_tool -change
"@rpath/$<TARGET_FILE_NAME:json_binlog>"
"@loader_path/../lib/$<TARGET_FILE_NAME:json_binlog>"
"$<TARGET_FILE:mysqlbinlog>"
)
ELSEIF(UNIX)
ADD_INSTALL_RPATH(mysqlbinlog "\$ORIGIN/../${INSTALL_LIBDIR}")
ENDIF()
ENDIF()
TARGET_COMPILE_DEFINITIONS(mysqlbinlog PRIVATE DISABLE_PSI_MUTEX)
TARGET_INCLUDE_DIRECTORIES(mysqlbinlog PRIVATE ${CMAKE_SOURCE_DIR}/sql)
MYSQL_ADD_EXECUTABLE(mysqladmin
mysqladmin.cc
LINK_LIBRARIES mysqlclient
)
MYSQL_ADD_EXECUTABLE(mysqlslap
mysqlslap.cc
LINK_LIBRARIES mysqlclient
)
MYSQL_ADD_EXECUTABLE(mysql_config_editor
mysql_config_editor.cc
LINK_LIBRARIES mysqlclient
)
MYSQL_ADD_EXECUTABLE(mysql_secure_installation
mysql_secure_installation.cc
LINK_LIBRARIES mysqlclient
)
MYSQL_ADD_EXECUTABLE(mysql_ssl_rsa_setup
logger.cc
mysql_ssl_rsa_setup.cc
path.cc
LINK_LIBRARIES mysys
)
# "WIN32" also covers 64 bit. "echo" is used in some files below "mysql-test/".
IF(WIN32)
MYSQL_ADD_EXECUTABLE(echo echo.cc)
ENDIF(WIN32)