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
|
2010-08-12 17:19:57 +02:00
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 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
|
|
|
|
my_snprintf_service.c
|
|
|
|
thd_alloc_service.c
|
|
|
|
thd_wait_service.c
|
2013-05-24 17:09:59 +02:00
|
|
|
thd_timezone_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
|
2012-03-28 19:26:00 +02:00
|
|
|
progress_report_service.c
|
2013-01-18 19:04:23 +01:00
|
|
|
debug_sync_service.c
|
2017-03-06 13:06:03 +01:00
|
|
|
my_sha2_service.c
|
2013-07-13 17:48:06 +02:00
|
|
|
my_sha1_service.c
|
2014-09-26 20:03:20 +02:00
|
|
|
my_md5_service.c
|
2017-03-06 17:05:03 +01:00
|
|
|
base64_service.c
|
2014-09-27 22:29:10 +02:00
|
|
|
wsrep_service.c
|
2015-04-01 21:25:02 +02:00
|
|
|
encryption_service.c
|
2015-05-13 21:57:24 +02:00
|
|
|
encryption_scheme_service.c
|
2013-09-09 13:56:35 +02:00
|
|
|
kill_statement_service.c
|
|
|
|
logger_service.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)
|