[3116] | 1 | # |
---|
| 2 | # ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | # > www.orxonox.net < |
---|
| 4 | # |
---|
| 5 | # This program is free software; you can redistribute it and/or |
---|
| 6 | # modify it under the terms of the GNU General Public License |
---|
| 7 | # as published by the Free Software Foundation; either version 2 |
---|
| 8 | # of the License, or (at your option) any later version. |
---|
| 9 | # |
---|
| 10 | # This program is distributed in the hope that it will be useful, |
---|
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | # GNU General Public License for more details. |
---|
| 14 | # |
---|
| 15 | # You should have received a copy of the GNU General Public License along |
---|
| 16 | # with this program; if not, write to the Free Software Foundation, |
---|
| 17 | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 18 | # |
---|
| 19 | # |
---|
| 20 | # Author: |
---|
| 21 | # Reto Grieder |
---|
| 22 | # Description: |
---|
| 23 | # Adds a library or an executable like ADD_LIBRARY/ADD_EXECUTABLE, but |
---|
| 24 | # accepts a lot more input information. Simply supply the keywords |
---|
| 25 | # described below in any order you wish. |
---|
| 26 | # |
---|
| 27 | # Switches: (when given --> TRUE, FALSE otherwise) |
---|
| 28 | # FIND_HEADER_FILES: Searches the current directory for all header files |
---|
| 29 | # and adds them to the target. |
---|
| 30 | # EXCLUDE_FROM_ALL: Inherited from ADD_LIBRARY/ADD_EXECUTABLE |
---|
| 31 | # ORXONOX_EXTERNAL: Specify this for third party libraries |
---|
| 32 | # NO_DLL_INTERFACE: Link statically with MSVC |
---|
| 33 | # NO_SOURCE_GROUPS: Don't create msvc source groups |
---|
| 34 | # STATIC/SHARED: Inherited from ADD_LIBRARY |
---|
| 35 | # WIN32: Inherited from ADD_EXECUTABLE |
---|
[3117] | 36 | # PCH_NO_DEFAULT: Do not make precompiled header files default if |
---|
| 37 | # specified with PCH_FILE |
---|
[3116] | 38 | # Lists: |
---|
| 39 | # LINK_LIBRARIES: Redirects to TARGET_LINK_LIBRARIES |
---|
| 40 | # VERSION: Set version to the binary |
---|
| 41 | # SOURCE_FILES: Source files for the target |
---|
| 42 | # DEFINE_SYMBOL: Sets the DEFINE_SYMBOL target property |
---|
| 43 | # TOLUA_FILES: Files with tolua interface |
---|
[3117] | 44 | # PCH_FILE: Precompiled header file |
---|
| 45 | # PCH_EXCLUDE: Source files to be excluded from PCH support |
---|
[3116] | 46 | # Note: |
---|
| 47 | # This function also installs the target! |
---|
| 48 | # Prerequisistes: |
---|
| 49 | # ORXONOX_DEFAULT_LINK, ORXONOX_CONFIG_FILES |
---|
| 50 | # Parameters: |
---|
| 51 | # _target_name, ARGN for the macro arguments |
---|
| 52 | # |
---|
| 53 | |
---|
[5667] | 54 | INCLUDE(CMakeDependentOption) |
---|
[3116] | 55 | INCLUDE(CapitaliseName) |
---|
| 56 | INCLUDE(GenerateToluaBindings) |
---|
| 57 | INCLUDE(ParseMacroArguments) |
---|
| 58 | INCLUDE(SourceFileUtilities) |
---|
[3117] | 59 | IF(PCH_COMPILER_SUPPORT) |
---|
| 60 | INCLUDE(PrecompiledHeaderFiles) |
---|
| 61 | ENDIF() |
---|
[3116] | 62 | |
---|
| 63 | FUNCTION(ORXONOX_ADD_LIBRARY _target_name) |
---|
| 64 | TU_ADD_TARGET(${_target_name} LIBRARY "STATIC;SHARED" ${ARGN}) |
---|
| 65 | ENDFUNCTION(ORXONOX_ADD_LIBRARY) |
---|
| 66 | |
---|
| 67 | FUNCTION(ORXONOX_ADD_EXECUTABLE _target_name) |
---|
| 68 | TU_ADD_TARGET(${_target_name} EXECUTABLE "WIN32" ${ARGN}) |
---|
| 69 | ENDFUNCTION(ORXONOX_ADD_EXECUTABLE) |
---|
| 70 | |
---|
| 71 | |
---|
| 72 | FUNCTION(TU_ADD_TARGET _target_name _target_type _additional_switches) |
---|
| 73 | CAPITALISE_NAME(${_target_name} _target_name_capitalised) |
---|
| 74 | |
---|
| 75 | # Specify all possible options (either switch or with add. arguments) |
---|
| 76 | SET(_switches FIND_HEADER_FILES EXCLUDE_FROM_ALL ORXONOX_EXTERNAL |
---|
[3117] | 77 | NO_DLL_INTERFACE NO_SOURCE_GROUPS ${_additional_switches} |
---|
[3371] | 78 | PCH_NO_DEFAULT NO_INSTALL) |
---|
[3116] | 79 | SET(_list_names LINK_LIBRARIES VERSION SOURCE_FILES DEFINE_SYMBOL |
---|
[3117] | 80 | TOLUA_FILES PCH_FILE PCH_EXCLUDE) |
---|
[3116] | 81 | PARSE_MACRO_ARGUMENTS("${_switches}" "${_list_names}" ${ARGN}) |
---|
| 82 | |
---|
| 83 | |
---|
| 84 | # GET_HEADER_FILES |
---|
| 85 | IF(_arg_FIND_HEADER_FILES) |
---|
| 86 | GET_ALL_HEADER_FILES(_${target_name}_header_files) |
---|
| 87 | ENDIF() |
---|
| 88 | |
---|
| 89 | # Remove potential duplicates |
---|
| 90 | SET(_${_target_name}_files ${_${target_name}_header_files} ${_arg_SOURCE_FILES}) |
---|
| 91 | LIST(REMOVE_DUPLICATES _${_target_name}_files) |
---|
| 92 | |
---|
| 93 | # Generate the source groups |
---|
| 94 | IF(NOT _arg_NO_SOURCE_GROUPS) |
---|
| 95 | GENERATE_SOURCE_GROUPS(${_${_target_name}_files}) |
---|
| 96 | |
---|
| 97 | IF(NOT _arg_ORXONOX_EXTERNAL) |
---|
| 98 | # Move the prereqs.h file to the config section |
---|
| 99 | IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${_target_name_capitalised}Prereqs.h) |
---|
| 100 | SOURCE_GROUP("Config" FILES ${_target_name_capitalised}Prereqs.h) |
---|
| 101 | ENDIF() |
---|
| 102 | # Add the config files in a special source group |
---|
| 103 | LIST(APPEND _${_target_name}_files ${ORXONOX_CONFIG_FILES}) |
---|
| 104 | SOURCE_GROUP("Config" FILES ${ORXONOX_CONFIG_FILES}) |
---|
| 105 | ENDIF() |
---|
| 106 | ENDIF(NOT _arg_NO_SOURCE_GROUPS) |
---|
| 107 | |
---|
| 108 | # TOLUA_FILES |
---|
| 109 | IF(_arg_TOLUA_FILES) |
---|
| 110 | GENERATE_TOLUA_BINDINGS(${_target_name_capitalised} _${_target_name}_files |
---|
| 111 | INPUTFILES ${_arg_TOLUA_FILES}) |
---|
| 112 | ENDIF() |
---|
| 113 | |
---|
[3117] | 114 | # First part (pre target) of precompiled header files |
---|
[5667] | 115 | IF(PCH_COMPILER_SUPPORT AND _arg_PCH_FILE) |
---|
[3117] | 116 | # Provide convenient option to control PCH |
---|
| 117 | STRING(TOUPPER "${_target_name}" _target_name_upper) |
---|
| 118 | IF(_arg_PCH_NO_DEFAULT) |
---|
| 119 | SET(PCH_DEFAULT FALSE) |
---|
| 120 | ELSE() |
---|
| 121 | SET(PCH_DEFAULT TRUE) |
---|
| 122 | ENDIF() |
---|
[5667] | 123 | CMAKE_DEPENDENT_OPTION(PCH_ENABLE_${_target_name_upper} |
---|
| 124 | "Enable using precompiled header files for library ${_target_name}." ${PCH_DEFAULT} PCH_ENABLE OFF) |
---|
[3117] | 125 | |
---|
| 126 | IF(PCH_ENABLE_${_target_name_upper}) |
---|
| 127 | PRECOMPILED_HEADER_FILES_PRE_TARGET(${_target_name} ${_arg_PCH_FILE} _${_target_name}_files EXCLUDE ${_arg_PCH_EXCLUDE}) |
---|
| 128 | ENDIF() |
---|
| 129 | ENDIF() |
---|
| 130 | |
---|
[3116] | 131 | # Certain libraries don't have dllexport/dllimport and can't be linked shared with msvc |
---|
| 132 | IF(MSVC AND _arg_NO_DLL_INTERFACE) |
---|
| 133 | SET(_arg_SHARED) |
---|
| 134 | SET(_arg_STATIC STATIC) |
---|
| 135 | ENDIF() |
---|
| 136 | |
---|
| 137 | # Set default linking if required |
---|
| 138 | IF(NOT _arg_SHARED AND NOT _arg_STATIC) |
---|
| 139 | IF("${ORXONOX_DEFAULT_LINK}" STREQUAL "STATIC") |
---|
| 140 | SET(_arg_STATIC STATIC) |
---|
| 141 | ELSEIF("${ORXONOX_DEFAULT_LINK}" STREQUAL "SHARED") |
---|
| 142 | SET(_arg_SHARED SHARED) |
---|
| 143 | ENDIF() |
---|
| 144 | ENDIF() |
---|
| 145 | |
---|
| 146 | # Add the library/executable |
---|
| 147 | IF("${_target_type}" STREQUAL "LIBRARY") |
---|
| 148 | ADD_LIBRARY(${_target_name} ${_arg_STATIC} ${_arg_SHARED} |
---|
| 149 | ${_arg_EXCLUDE_FROM_ALL} ${_${_target_name}_files}) |
---|
| 150 | ELSE() |
---|
| 151 | ADD_EXECUTABLE(${_target_name} ${_arg_WIN32} ${_arg_EXCLUDE_FROM_ALL} |
---|
| 152 | ${_${_target_name}_files}) |
---|
| 153 | ENDIF() |
---|
| 154 | |
---|
| 155 | # LINK_LIBRARIES |
---|
| 156 | IF(_arg_LINK_LIBRARIES) |
---|
| 157 | TARGET_LINK_LIBRARIES(${_target_name} ${_arg_LINK_LIBRARIES}) |
---|
| 158 | ENDIF() |
---|
| 159 | |
---|
| 160 | # DEFINE_SYMBOL |
---|
| 161 | IF(_arg_DEFINE_SYMBOL) |
---|
| 162 | SET_TARGET_PROPERTIES(${_target_name} PROPERTIES DEFINE_SYMBOL ${_arg_DEFINE_SYMBOL}) |
---|
| 163 | ENDIF() |
---|
| 164 | |
---|
| 165 | # VERSION |
---|
| 166 | IF(_arg_VERSION) |
---|
| 167 | SET_TARGET_PROPERTIES(${_target_name} PROPERTIES VERSION ${_arg_VERSION}) |
---|
[3167] | 168 | ELSEIF(NOT _arg_ORXONOX_EXTERNAL) |
---|
[3116] | 169 | SET_TARGET_PROPERTIES(${_target_name} PROPERTIES VERSION ${ORXONOX_VERSION}) |
---|
| 170 | ENDIF() |
---|
| 171 | |
---|
[3117] | 172 | # Second part of precompiled header files |
---|
| 173 | IF(PCH_COMPILER_SUPPORT AND PCH_ENABLE_${_target_name_upper} AND _arg_PCH_FILE) |
---|
| 174 | PRECOMPILED_HEADER_FILES_POST_TARGET(${_target_name} ${_arg_PCH_FILE}) |
---|
| 175 | ENDIF() |
---|
| 176 | |
---|
[3368] | 177 | IF(NOT _arg_STATIC AND NOT _arg_NO_INSTALL) |
---|
[3116] | 178 | INSTALL(TARGETS ${_target_name} |
---|
[5641] | 179 | RUNTIME DESTINATION ${RUNTIME_INSTALL_DIRECTORY} |
---|
| 180 | LIBRARY DESTINATION ${LIBRARY_INSTALL_DIRECTORY} |
---|
| 181 | #ARCHIVE DESTINATION ${ARCHIVE_INSTALL_DIRECTORY} |
---|
[3116] | 182 | ) |
---|
| 183 | ENDIF() |
---|
| 184 | |
---|
| 185 | ENDFUNCTION(TU_ADD_TARGET) |
---|