274 lines
8.1 KiB
CMake
274 lines
8.1 KiB
CMake
# Copyright (c) 2009, 2017, Oracle and/or its affiliates. All rights reserved.
|
|
#
|
|
# 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
|
|
|
|
GET_FILENAME_COMPONENT(MYSQL_CMAKE_SCRIPT_DIR ${CMAKE_CURRENT_LIST_FILE} PATH)
|
|
INCLUDE(${MYSQL_CMAKE_SCRIPT_DIR}/cmake_parse_arguments.cmake)
|
|
|
|
# For windows: install .pdf file for each target.
|
|
MACRO (INSTALL_DEBUG_SYMBOLS targets)
|
|
IF(MSVC)
|
|
FOREACH(target ${targets})
|
|
GET_TARGET_PROPERTY(type ${target} TYPE)
|
|
IF(NOT INSTALL_LOCATION)
|
|
IF(type MATCHES "STATIC_LIBRARY"
|
|
OR type MATCHES "MODULE_LIBRARY"
|
|
OR type MATCHES "SHARED_LIBRARY")
|
|
SET(INSTALL_LOCATION "lib")
|
|
ELSEIF(type MATCHES "EXECUTABLE")
|
|
SET(INSTALL_LOCATION "bin")
|
|
ELSE()
|
|
MESSAGE(FATAL_ERROR
|
|
"cannot determine type of ${target}. Don't now where to install")
|
|
ENDIF()
|
|
ENDIF()
|
|
|
|
IF(target STREQUAL "mysqld")
|
|
SET(comp Server)
|
|
ELSE()
|
|
SET(comp Debuginfo)
|
|
ENDIF()
|
|
|
|
# No .pdb file for static libraries.
|
|
IF(NOT type MATCHES "STATIC_LIBRARY")
|
|
INSTALL(FILES $<TARGET_PDB_FILE:${target}>
|
|
DESTINATION ${INSTALL_LOCATION} COMPONENT ${comp})
|
|
ENDIF()
|
|
ENDFOREACH()
|
|
ENDIF()
|
|
ENDMACRO()
|
|
|
|
|
|
FUNCTION(INSTALL_SCRIPT)
|
|
MYSQL_PARSE_ARGUMENTS(ARG
|
|
"DESTINATION;COMPONENT"
|
|
""
|
|
${ARGN}
|
|
)
|
|
|
|
SET(script ${ARG_DEFAULT_ARGS})
|
|
IF(NOT ARG_DESTINATION)
|
|
SET(ARG_DESTINATION ${INSTALL_BINDIR})
|
|
ENDIF()
|
|
IF(ARG_COMPONENT)
|
|
SET(COMP COMPONENT ${ARG_COMPONENT})
|
|
ELSE()
|
|
SET(COMP)
|
|
ENDIF()
|
|
|
|
INSTALL(FILES
|
|
${script}
|
|
DESTINATION ${ARG_DESTINATION}
|
|
PERMISSIONS OWNER_READ OWNER_WRITE
|
|
OWNER_EXECUTE GROUP_READ GROUP_EXECUTE
|
|
WORLD_READ WORLD_EXECUTE ${COMP}
|
|
)
|
|
ENDFUNCTION()
|
|
|
|
|
|
# Installs targets, also installs pdbs on Windows.
|
|
#
|
|
#
|
|
|
|
FUNCTION(MYSQL_INSTALL_TARGETS)
|
|
MYSQL_PARSE_ARGUMENTS(ARG
|
|
"DESTINATION;COMPONENT"
|
|
""
|
|
${ARGN}
|
|
)
|
|
SET(TARGETS ${ARG_DEFAULT_ARGS})
|
|
IF(NOT TARGETS)
|
|
MESSAGE(FATAL_ERROR "Need target list for MYSQL_INSTALL_TARGETS")
|
|
ENDIF()
|
|
IF(NOT ARG_DESTINATION)
|
|
MESSAGE(FATAL_ERROR "Need DESTINATION parameter for MYSQL_INSTALL_TARGETS")
|
|
ENDIF()
|
|
|
|
IF(ARG_COMPONENT)
|
|
SET(COMP COMPONENT ${ARG_COMPONENT})
|
|
ENDIF()
|
|
INSTALL(TARGETS ${TARGETS} DESTINATION ${ARG_DESTINATION} ${COMP})
|
|
SET(INSTALL_LOCATION ${ARG_DESTINATION} )
|
|
INSTALL_DEBUG_SYMBOLS("${TARGETS}")
|
|
SET(INSTALL_LOCATION)
|
|
ENDFUNCTION()
|
|
|
|
# Optionally install mysqld/client/embedded from debug build run.
|
|
# outside of the current build dir
|
|
# (unless multi-config generator is used like Visual Studio or Xcode).
|
|
# For single-config generators like Makefile generators we default Debug
|
|
# build directory to ${buildroot}/../debug.
|
|
GET_FILENAME_COMPONENT(BINARY_PARENTDIR ${CMAKE_BINARY_DIR} PATH)
|
|
SET(DEBUGBUILDDIR "${BINARY_PARENTDIR}/debug" CACHE INTERNAL
|
|
"Directory of debug build")
|
|
|
|
|
|
FUNCTION(INSTALL_DEBUG_TARGET target)
|
|
MYSQL_PARSE_ARGUMENTS(ARG
|
|
"DESTINATION;RENAME;COMPONENT"
|
|
""
|
|
${ARGN}
|
|
)
|
|
|
|
# Relevant only for RelWithDebInfo builds
|
|
IF(BUILD_IS_SINGLE_CONFIG AND CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
RETURN()
|
|
ENDIF()
|
|
|
|
GET_TARGET_PROPERTY(target_type ${target} TYPE)
|
|
GET_TARGET_PROPERTY(target_name ${target} DEBUG_OUTPUT_NAME)
|
|
IF(NOT target_name)
|
|
GET_TARGET_PROPERTY(target_name ${target} OUTPUT_NAME)
|
|
IF(NOT target_name)
|
|
SET(target_name "${target}")
|
|
ENDIF()
|
|
ENDIF()
|
|
|
|
# On windows we install client libraries
|
|
IF(target_type STREQUAL "STATIC_LIBRARY")
|
|
SET(debug_target_location
|
|
"${CMAKE_BINARY_DIR}/archive_output_directory/Debug/${target_name}.lib")
|
|
# On UNIX we install mysqlserver which has name libmysqld.a
|
|
IF(UNIX)
|
|
IF(BUILD_IS_SINGLE_CONFIG)
|
|
SET(debug_target_location
|
|
"${DEBUGBUILDDIR}/archive_output_directory/lib${target_name}.a")
|
|
ELSE()
|
|
SET(debug_target_location
|
|
"${CMAKE_BINARY_DIR}/archive_output_directory/Debug/lib${target_name}.a")
|
|
ENDIF()
|
|
MESSAGE(STATUS
|
|
"library target ${target} debug_target ${debug_target_location}")
|
|
ENDIF()
|
|
# mysqld or mysqld-debug
|
|
ELSEIF(target_type STREQUAL "EXECUTABLE")
|
|
GET_TARGET_PROPERTY(runtime_output_directory ${target}
|
|
RUNTIME_OUTPUT_DIRECTORY)
|
|
IF(NOT runtime_output_directory)
|
|
MESSAGE(FATAL_ERROR "unknown executable!!")
|
|
ENDIF()
|
|
|
|
STRING(REPLACE
|
|
"${CMAKE_BINARY_DIR}/" "" RELATIVE_DIR ${runtime_output_directory})
|
|
|
|
SET(EXE_SUFFIX "${CMAKE_EXECUTABLE_SUFFIX}")
|
|
IF(BUILD_IS_SINGLE_CONFIG)
|
|
SET(debug_target_location
|
|
"${DEBUGBUILDDIR}/${RELATIVE_DIR}/${target_name}${EXE_SUFFIX}")
|
|
ELSE()
|
|
SET(debug_target_location
|
|
"${CMAKE_BINARY_DIR}/${RELATIVE_DIR}/Debug/${target_name}${EXE_SUFFIX}")
|
|
ENDIF()
|
|
MESSAGE(STATUS
|
|
"executable target ${target} debug_target ${debug_target_location}")
|
|
|
|
# Plugins and components
|
|
ELSEIF(target_type STREQUAL "MODULE_LIBRARY")
|
|
SET(DLL_SUFFIX "${CMAKE_SHARED_LIBRARY_SUFFIX}")
|
|
IF(APPLE)
|
|
SET(DLL_SUFFIX ".so") # we do not use .dylib
|
|
ENDIF()
|
|
GET_TARGET_PROPERTY(
|
|
target_output_directory ${target} LIBRARY_OUTPUT_DIRECTORY)
|
|
IF(NOT target_output_directory)
|
|
MESSAGE(FATAL_ERROR "unknown module!!")
|
|
ENDIF()
|
|
|
|
STRING(REPLACE
|
|
"${CMAKE_BINARY_DIR}/" "" RELATIVE_DIR ${target_output_directory})
|
|
|
|
IF(BUILD_IS_SINGLE_CONFIG)
|
|
SET(debug_target_location
|
|
"${DEBUGBUILDDIR}/${RELATIVE_DIR}/${target_name}${DLL_SUFFIX}")
|
|
ELSE()
|
|
SET(debug_target_location
|
|
"${CMAKE_BINARY_DIR}/${RELATIVE_DIR}/Debug/${target_name}${DLL_SUFFIX}")
|
|
ENDIF()
|
|
# MESSAGE(STATUS
|
|
# "module target ${target} debug_target ${debug_target_location}")
|
|
ENDIF()
|
|
|
|
# This is only used for mysqld / mysqld-debug / libmysqlserver.a
|
|
IF(ARG_RENAME)
|
|
SET(RENAME_PARAM RENAME ${ARG_RENAME})
|
|
ELSE()
|
|
SET(RENAME_PARAM)
|
|
ENDIF()
|
|
|
|
IF(NOT ARG_DESTINATION)
|
|
MESSAGE(FATAL_ERROR "Need DESTINATION parameter for INSTALL_DEBUG_TARGET")
|
|
ENDIF()
|
|
|
|
IF(NOT ARG_COMPONENT)
|
|
SET(ARG_COMPONENT DebugBinaries)
|
|
ENDIF()
|
|
|
|
# Define permissions
|
|
# For executable files
|
|
SET(PERMISSIONS_EXECUTABLE
|
|
PERMISSIONS
|
|
OWNER_READ OWNER_WRITE OWNER_EXECUTE
|
|
GROUP_READ GROUP_EXECUTE
|
|
WORLD_READ WORLD_EXECUTE)
|
|
|
|
# Permissions for shared library (honors CMAKE_INSTALL_NO_EXE which is
|
|
# typically set on Debian)
|
|
IF(CMAKE_INSTALL_SO_NO_EXE)
|
|
SET(PERMISSIONS_SHARED_LIBRARY
|
|
PERMISSIONS
|
|
OWNER_READ OWNER_WRITE
|
|
GROUP_READ
|
|
WORLD_READ)
|
|
ELSE()
|
|
SET(PERMISSIONS_SHARED_LIBRARY ${PERMISSIONS_EXECUTABLE})
|
|
ENDIF()
|
|
|
|
# Shared modules get the same permissions as shared libraries
|
|
SET(PERMISSIONS_MODULE_LIBRARY ${PERMISSIONS_SHARED_LIBRARY})
|
|
|
|
# Define permissions for static library
|
|
SET(PERMISSIONS_STATIC_LIBRARY
|
|
PERMISSIONS
|
|
OWNER_READ OWNER_WRITE
|
|
GROUP_READ
|
|
WORLD_READ)
|
|
|
|
INSTALL(FILES ${debug_target_location}
|
|
DESTINATION ${ARG_DESTINATION}
|
|
${RENAME_PARAM}
|
|
${PERMISSIONS_${target_type}}
|
|
CONFIGURATIONS Release RelWithDebInfo
|
|
COMPONENT ${ARG_COMPONENT}
|
|
OPTIONAL)
|
|
|
|
# For windows, install .pdb files for .exe and .dll files.
|
|
IF(MSVC AND NOT target_type STREQUAL "STATIC_LIBRARY")
|
|
GET_FILENAME_COMPONENT(ext ${debug_target_location} EXT)
|
|
STRING(REPLACE "${ext}" ".pdb"
|
|
debug_pdb_target_location "${debug_target_location}" )
|
|
IF (RENAME_PARAM)
|
|
STRING(REPLACE "${ext}" ".pdb" pdb_rename "${ARG_RENAME}")
|
|
SET(PDB_RENAME_PARAM RENAME "${pdb_rename}")
|
|
ENDIF()
|
|
|
|
INSTALL(FILES ${debug_pdb_target_location}
|
|
DESTINATION ${ARG_DESTINATION}
|
|
${PDB_RENAME_PARAM}
|
|
CONFIGURATIONS Release RelWithDebInfo
|
|
COMPONENT ${ARG_COMPONENT}
|
|
OPTIONAL)
|
|
ENDIF()
|
|
ENDFUNCTION()
|
|
|