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
|
# Copyright (c) 2015, 2025, 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 designed to work 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 either included with
# the program or referenced in the documentation.
#
# 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
# Prevent Boost from including external precompiled Boost libraries,
# and turn off unused functionality.
IF(USING_LOCAL_BOOST)
ADD_DEFINITIONS(
-DBOOST_ALL_NO_LIB
-DBOOST_SYSTEM_NO_DEPRECATED)
ENDIF()
INCLUDE_DIRECTORIES(SYSTEM ${BOOST_PATCHES_DIR} ${BOOST_INCLUDE_DIR})
SET(MYSQLPUMP_LIB_SOURCES
abstract_chain_element.cc
abstract_connection_provider.cc
abstract_crawler.cc
abstract_data_formatter_wrapper.cc
abstract_data_object.cc
abstract_database_dump_task.cc
abstract_dump_task.cc
abstract_mysql_chain_element_extension.cc
abstract_object_reader_wrapper.cc
abstract_output_writer_wrapper.cc
abstract_plain_sql_object.cc
abstract_plain_sql_object_dump_task.cc
abstract_progress_reporter.cc
abstract_progress_watcher.cc
abstract_simple_dump_task.cc
abstract_table_dump_task.cc
chain_data.cc
column_statistic.cc
composite_message_handler.cc
compression_lz4_writer.cc
compression_zlib_writer.cc
database.cc
database_end_dump_task.cc
database_start_dump_task.cc
dump_end_dump_task.cc
dump_start_dump_task.cc
event_scheduler_event.cc
field.cc
file_writer.cc
i_chain_element.cc
i_dump_task.cc
i_progress_reporter.cc
item_processing_data.cc
mysql_chain_element_options.cc
mysql_crawler.cc
mysql_field.cc
mysql_function.cc
mysql_object_reader.cc
mysql_object_reader_options.cc
mysqldump_tool_chain_maker.cc
mysqldump_tool_chain_maker_options.cc
object_filter.cc
object_queue.cc
pattern_matcher.cc
privilege.cc
row.cc
row_group_dump_task.cc
simple_id_generator.cc
single_transaction_connection_provider.cc
sql_formatter.cc
sql_formatter_options.cc
standard_progress_watcher.cc
standard_writer.cc
stored_procedure.cc
table.cc
table_deferred_indexes_dump_task.cc
table_definition_dump_task.cc
table_rows_dump_task.cc
tables_definition_ready_dump_task.cc
thread.cc
thread_group.cc
thread_specific_connection_provider.cc
trigger.cc
view.cc
)
# Silence -Werror=unused-result for fwrite().
IF(MY_COMPILER_IS_GNU)
ADD_COMPILE_FLAGS(
standard_writer.cc
COMPILE_FLAGS "-Wno-unused-result"
)
ENDIF()
ADD_STATIC_LIBRARY(mysqlpump_lib
${MYSQLPUMP_LIB_SOURCES}
LINK_LIBRARIES
client_base ext::lz4 ext::zlib
)
MYSQL_ADD_EXECUTABLE(mysqlpump program.cc)
TARGET_LINK_LIBRARIES(mysqlpump mysqlpump_lib)
SET_TARGET_PROPERTIES(mysqlpump PROPERTIES HAS_CXX TRUE)
|