2010-11-25 18:17:28 +01:00
|
|
|
# Copyright (c) 2006 MySQL AB, 2010 Oracle and/or its affiliates. All rights reserved.
|
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
|
2011-10-19 21:45:18 +02:00
|
|
|
my_thread_scheduler_service.c
|
2012-03-28 19:26:00 +02:00
|
|
|
progress_report_service.c
|
|
|
|
debug_sync_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)
|