2013-04-07 14:50:01 +02:00
|
|
|
# Copyright (c) 2006 MySQL AB, 2010 Oracle and/or its affiliates.
|
2009-11-02 21:05:42 +01:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; version 2 of the License.
|
|
|
|
#
|
|
|
|
# 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 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
|
2019-05-11 20:29:06 +02:00
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA
|
2009-11-02 21:05:42 +01:00
|
|
|
|
|
|
|
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include)
|
|
|
|
|
2010-06-07 16:01:39 +02:00
|
|
|
SET(MYSQLSERVICES_SOURCES
|
2017-03-06 19:37:48 +01:00
|
|
|
base64_service.c
|
|
|
|
debug_sync_service.c
|
|
|
|
encryption_scheme_service.c
|
|
|
|
encryption_service.c
|
|
|
|
kill_statement_service.c
|
|
|
|
logger_service.c
|
2017-04-18 18:37:57 +02:00
|
|
|
my_crypt_service.c
|
2017-03-06 19:37:48 +01:00
|
|
|
my_md5_service.c
|
2017-04-18 18:37:57 +02:00
|
|
|
my_print_error_service.c
|
2017-03-06 19:37:48 +01:00
|
|
|
my_sha1_service.c
|
|
|
|
my_sha2_service.c
|
2010-06-07 16:01:39 +02:00
|
|
|
my_snprintf_service.c
|
2017-03-06 19:37:48 +01:00
|
|
|
progress_report_service.c
|
2010-06-07 16:01:39 +02:00
|
|
|
thd_alloc_service.c
|
2013-12-12 16:18:49 +01:00
|
|
|
thd_autoinc_service.c
|
|
|
|
thd_error_context_service.c
|
2017-03-06 19:34:22 +01:00
|
|
|
thd_rnd_service.c
|
2014-12-03 23:51:47 +01:00
|
|
|
thd_specifics_service.c
|
2017-03-06 19:37:48 +01:00
|
|
|
thd_timezone_service.c
|
|
|
|
thd_wait_service.c
|
2014-09-27 22:29:10 +02:00
|
|
|
wsrep_service.c
|
2018-12-11 22:49:39 +01:00
|
|
|
json_service.c
|
2021-09-06 20:34:35 +02:00
|
|
|
sql_service.c
|
2021-08-31 14:09:47 +02:00
|
|
|
provider_service_bzip2.c
|
|
|
|
provider_service_lz4.c
|
|
|
|
provider_service_lzma.c
|
|
|
|
provider_service_lzo.c
|
|
|
|
provider_service_snappy.c
|
|
|
|
)
|
2009-11-02 21:05:42 +01:00
|
|
|
|
2011-12-26 15:24:54 +01:00
|
|
|
ADD_CONVENIENCE_LIBRARY(mysqlservices ${MYSQLSERVICES_SOURCES})
|
2010-11-13 23:16:52 +01:00
|
|
|
INSTALL(TARGETS mysqlservices DESTINATION ${INSTALL_LIBDIR} COMPONENT Development)
|