1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
# Copyright (C) 2010 Florent Lamiraux, Thomas Moulard, JRL, CNRS/AIST.
#
# 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, either version 3 of the License, or
# (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.
# _SETUP_PROJECT_HEADER
# ---------------------
#
# This setup CMake to handle headers properly.
#
# 1. The `include` directory in the build and source trees is added
# to the include search path (see INCLUDE_DIRECTORIES).
# As always, the build directory has the priority over the source
# directory in case of conflict.
#
# However you *should not* have conflicting names
# for files which are both in the build and source trees.
# Conflicting names are filenames which differ only by a prefix:
#
# include/a.h vs _build/include/a.h
# src/a.h vs src/foo/a.h
#
# ...this files makes a project very fragile as the -I ordering
# will have a lot of importance and may break easily when using
# tools which may reorder the pre-processor flags such as pkg-config.
#
#
# 2. The headers are installed in the prefix
# in a way which preserves the directory structure.
#
# The directory name for header follows the rule:
# each non alpha-numeric character is replaced by a slash (`/`).
# In practice, it means that hpp-util will put its header in:
# ${CMAKE_INSTALL_PREFIX}/include/hpp/util
#
# This rule has been decided to homogenize headers location, however
# some packages do not follow this rule (dg-middleware for instance).
#
# In that case, CUSTOM_HEADER_DIR can be set to override this policy.
#
# Reminder: breaking the JRL/LAAS policies shoud be done after
# discussing the issue. You should at least open a ticket
# or send an e-mail to notify this behavior.
#
MACRO(_SETUP_PROJECT_HEADER)
# Install project headers.
IF(DEFINED CUSTOM_HEADER_DIR)
SET(HEADER_DIR "${CUSTOM_HEADER_DIR}")
ELSE(DEFINED CUSTOM_HEADER_DIR)
STRING(REGEX REPLACE "[^a-zA-Z0-9]" "/" HEADER_DIR "${PROJECT_NAME}")
ENDIF(DEFINED CUSTOM_HEADER_DIR)
STRING(TOLOWER "${HEADER_DIR}" "HEADER_DIR")
# Generate config.hh header.
STRING(REGEX REPLACE "[^a-zA-Z0-9]" "_"
PACKAGE_CPPNAME "${PROJECT_NAME}")
STRING(TOLOWER "${PACKAGE_CPPNAME}" "PACKAGE_CPPNAME_LOWER")
STRING(TOUPPER "${PACKAGE_CPPNAME}" "PACKAGE_CPPNAME")
GENERATE_CONFIGURATION_HEADER(
${HEADER_DIR} config.hh ${PACKAGE_CPPNAME}
${PACKAGE_CPPNAME_LOWER}_EXPORTS)
# Generate deprecated.hh header.
CONFIGURE_FILE(
${CMAKE_CURRENT_SOURCE_DIR}/cmake/deprecated.hh.cmake
${CMAKE_CURRENT_BINARY_DIR}/include/${HEADER_DIR}/deprecated.hh
@ONLY
)
INSTALL(FILES
${CMAKE_CURRENT_BINARY_DIR}/include/${HEADER_DIR}/deprecated.hh
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${HEADER_DIR}
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ OWNER_WRITE
)
# Generate warning.hh header.
CONFIGURE_FILE(
${CMAKE_CURRENT_SOURCE_DIR}/cmake/warning.hh.cmake
${CMAKE_CURRENT_BINARY_DIR}/include/${HEADER_DIR}/warning.hh
@ONLY
)
INSTALL(FILES
${CMAKE_CURRENT_BINARY_DIR}/include/${HEADER_DIR}/warning.hh
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${HEADER_DIR}
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ OWNER_WRITE
)
# Generate config.h header.
# This header, unlike the previous one is *not* installed and is generated
# in the top-level directory of the build tree.
# Therefore it must not be inluded by any distributed header.
CONFIGURE_FILE(
${CMAKE_CURRENT_SOURCE_DIR}/cmake/config.h.cmake
${CMAKE_CURRENT_BINARY_DIR}/config.h
)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/config.h
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${HEADER_DIR}
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ OWNER_WRITE
)
# Default include directories:
# - top-level build directory (for generated non-distributed headers).
# - include directory in the build tree (for generated, distributed headers).
# - include directory in the source tree (non-generated, distributed headers).
INCLUDE_DIRECTORIES(
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}/include
${CMAKE_CURRENT_SOURCE_DIR}/include
)
ENDMACRO(_SETUP_PROJECT_HEADER)
# GENERATE_CONFIGURATION_HEADER
# -----------------------------
#
# This macro generates a configuration header. Macro parameters may be
# used to customize it.
#
# HEADER_DIR : where to generate the header
# FILENAME : how should the file named
# LIBRARY_NAME : CPP symbol prefix, should match the compiled library name
# EXPORT_SYMBOl : what symbol controls the switch between symbol import/export
FUNCTION(GENERATE_CONFIGURATION_HEADER
HEADER_DIR FILENAME LIBRARY_NAME EXPORT_SYMBOL)
# Generate the header.
CONFIGURE_FILE(
${CMAKE_CURRENT_SOURCE_DIR}/cmake/config.hh.cmake
${CMAKE_CURRENT_BINARY_DIR}/include/${HEADER_DIR}/${FILENAME}
@ONLY
)
# Install it.
INSTALL(FILES
${CMAKE_CURRENT_BINARY_DIR}/include/${HEADER_DIR}/${FILENAME}
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${HEADER_DIR}
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ OWNER_WRITE
)
ENDFUNCTION(GENERATE_CONFIGURATION_HEADER)
# _SETUP_PROJECT_HEADER_FINAlIZE
# ------------------------------
#
# Post-processing of the header management step.
# Install public headers if required.
#
MACRO(_SETUP_PROJECT_HEADER_FINAlIZE)
# If the header list is set, install it.
IF(DEFINED ${PROJECT_NAME}_HEADERS)
FOREACH(FILE ${${PROJECT_NAME}_HEADERS})
HEADER_INSTALL (${FILE})
ENDFOREACH(FILE)
ENDIF(DEFINED ${PROJECT_NAME}_HEADERS)
ENDMACRO(_SETUP_PROJECT_HEADER_FINAlIZE)
# HEADER_INSTALL(FILES)
# -------------------------------
#
# Install a list of headers.
#
MACRO(HEADER_INSTALL FILES)
FOREACH(FILE ${FILES})
GET_FILENAME_COMPONENT(DIR "${FILE}" PATH)
STRING(REGEX REPLACE "${CMAKE_BINARY_DIR}" "" DIR "${DIR}")
STRING(REGEX REPLACE "${CMAKE_SOURCE_DIR}" "" DIR "${DIR}")
STRING(REGEX REPLACE "include/" "" DIR "${DIR}")
INSTALL(FILES ${FILE}
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/${DIR}"
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ OWNER_WRITE
)
ENDFOREACH()
ENDMACRO()
|