mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
6d4224a31c
no_error handling for select (used by INSERT ... SELECT) still needs to be fixed, but I will do that in a separate commit
74 lines
3 KiB
CMake
Executable file
74 lines
3 KiB
CMake
Executable file
# Copyright (c) 2006-2008 MySQL AB, 2009 Sun Microsystems, Inc.
|
|
# Use is subject to license terms.
|
|
#
|
|
# 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
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
INCLUDE("${PROJECT_SOURCE_DIR}/win/mysql_manifest.cmake")
|
|
|
|
# We use the "mysqlclient" library here just as safety, in case
|
|
# any of the clients here would go beyond the client API and access the
|
|
# Thread Local Storage directly.
|
|
|
|
|
|
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include
|
|
${CMAKE_SOURCE_DIR}/zlib
|
|
${CMAKE_SOURCE_DIR}/extra/yassl/include
|
|
${CMAKE_SOURCE_DIR}/libmysql
|
|
${CMAKE_SOURCE_DIR}/regex
|
|
${CMAKE_SOURCE_DIR}/sql
|
|
${CMAKE_SOURCE_DIR}/strings
|
|
${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
MYSQL_ADD_EXECUTABLE(mysql completion_hash.cc mysql.cc readline.cc sql_string.cc ../mysys/my_conio.c DESTINATION bin)
|
|
TARGET_LINK_LIBRARIES(mysql mysqlclient wsock32)
|
|
|
|
MYSQL_ADD_EXECUTABLE(mysqltest mysqltest.cc DESTINATION bin)
|
|
SET_SOURCE_FILES_PROPERTIES(mysqltest.cc PROPERTIES COMPILE_FLAGS "-DTHREADS")
|
|
TARGET_LINK_LIBRARIES(mysqltest mysqlclient mysys regex wsock32 dbug)
|
|
|
|
MYSQL_ADD_EXECUTABLE(mysqlcheck mysqlcheck.c DESTINATION bin)
|
|
TARGET_LINK_LIBRARIES(mysqlcheck mysqlclient wsock32)
|
|
|
|
MYSQL_ADD_EXECUTABLE(mysqldump mysqldump.c ../sql-common/my_user.c ../mysys/mf_getdate.c DESTINATION bin)
|
|
TARGET_LINK_LIBRARIES(mysqldump mysqlclient wsock32)
|
|
|
|
MYSQL_ADD_EXECUTABLE(mysqlimport mysqlimport.c DESTINATION bin)
|
|
TARGET_LINK_LIBRARIES(mysqlimport mysqlclient wsock32)
|
|
|
|
MYSQL_ADD_EXECUTABLE(mysql_upgrade mysql_upgrade.c DESTINATION bin)
|
|
TARGET_LINK_LIBRARIES(mysql_upgrade mysqlclient wsock32)
|
|
ADD_DEPENDENCIES(mysql_upgrade GenFixPrivs)
|
|
|
|
MYSQL_ADD_EXECUTABLE(mysqlshow mysqlshow.c DESTINATION bin)
|
|
TARGET_LINK_LIBRARIES(mysqlshow mysqlclient wsock32)
|
|
|
|
MYSQL_ADD_EXECUTABLE(mysqlbinlog mysqlbinlog.cc
|
|
../mysys/mf_tempdir.c
|
|
../mysys/my_new.cc
|
|
../mysys/my_bit.c
|
|
../mysys/my_bitmap.c
|
|
../mysys/my_vle.c
|
|
../mysys/base64.c
|
|
../mysys/checksum.c
|
|
DESTINATION bin)
|
|
TARGET_LINK_LIBRARIES(mysqlbinlog mysqlclient wsock32)
|
|
|
|
MYSQL_ADD_EXECUTABLE(mysqladmin mysqladmin.cc DESTINATION bin)
|
|
TARGET_LINK_LIBRARIES(mysqladmin mysqlclient wsock32)
|
|
|
|
MYSQL_ADD_EXECUTABLE(mysqlslap mysqlslap.c DESTINATION bin)
|
|
SET_SOURCE_FILES_PROPERTIES(mysqlslap.c PROPERTIES COMPILE_FLAGS "-DTHREADS")
|
|
TARGET_LINK_LIBRARIES(mysqlslap mysqlclient mysys zlib wsock32 dbug)
|
|
|
|
|
|
MYSQL_ADD_EXECUTABLE(echo echo.c COMPONENT Test)
|