[2626] | 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 | # Several functions that help organising the source tree. |
---|
| 24 | # [ADD/SET]_SOURCE_FILES - Writes source files to the cache by force and |
---|
| 25 | # adds the current directory. |
---|
[5929] | 26 | # Also compiles multiple source files into a single |
---|
[8729] | 27 | # translation unit (faster) |
---|
| 28 | # Use [END_]BUILD_UNIT in |
---|
[5929] | 29 | # [ADD|SET]_SOURCE_FILES and specify the name of |
---|
[8729] | 30 | # the new source file after BUILD_UNIT |
---|
[5929] | 31 | # GET_ALL_HEADER_FILES - Finds all header files recursively. |
---|
[2626] | 32 | # GENERATE_SOURCE_GROUPS - Set Visual Studio source groups. |
---|
| 33 | # |
---|
[2620] | 34 | |
---|
[5929] | 35 | FUNCTION(PREPARE_SOURCE_FILES) |
---|
[7818] | 36 | SET(_source_files) |
---|
[2620] | 37 | FOREACH(_file ${ARGN}) |
---|
[8729] | 38 | IF(_file MATCHES "^(BUILD_UNIT|END_BUILD_UNIT)$") |
---|
[7818] | 39 | # Append keywords verbatim |
---|
| 40 | LIST(APPEND _source_files ${_file}) |
---|
[5929] | 41 | ELSE() |
---|
[7818] | 42 | # Store file with path relative to the root source directory |
---|
| 43 | FILE(RELATIVE_PATH _file_rel ${CMAKE_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/${_file}) |
---|
| 44 | LIST(APPEND _source_files ./${_file_rel}) |
---|
[5929] | 45 | ENDIF() |
---|
[2620] | 46 | ENDFOREACH(_file) |
---|
[7818] | 47 | SET(_source_files ${_source_files} PARENT_SCOPE) |
---|
[5929] | 48 | ENDFUNCTION(PREPARE_SOURCE_FILES) |
---|
| 49 | |
---|
| 50 | |
---|
| 51 | # Adds source files with the full path to a list |
---|
| 52 | FUNCTION(ADD_SOURCE_FILES _varname) |
---|
| 53 | PREPARE_SOURCE_FILES(${ARGN}) |
---|
[2620] | 54 | # Write into the cache to avoid variable scoping in subdirs |
---|
[7818] | 55 | SET(${_varname} ${${_varname}} ${_source_files} CACHE INTERNAL "Do not edit") |
---|
[2620] | 56 | ENDFUNCTION(ADD_SOURCE_FILES) |
---|
| 57 | |
---|
| 58 | |
---|
| 59 | # Sets source files with the full path |
---|
| 60 | FUNCTION(SET_SOURCE_FILES _varname) |
---|
[5929] | 61 | PREPARE_SOURCE_FILES(${ARGN}) |
---|
[2620] | 62 | # Write into the cache to avoid variable scoping in subdirs |
---|
[7818] | 63 | SET(${_varname} ${_source_files} CACHE INTERNAL "Do not edit") |
---|
[2620] | 64 | ENDFUNCTION(SET_SOURCE_FILES) |
---|
| 65 | |
---|
| 66 | |
---|
| 67 | # Search the entire directory tree for header files and add them to a variable |
---|
| 68 | MACRO(GET_ALL_HEADER_FILES _target_varname) |
---|
| 69 | FILE(GLOB_RECURSE ${_target_varname} ${CMAKE_CURRENT_SOURCE_DIR} "*.h") |
---|
| 70 | ENDMACRO(GET_ALL_HEADER_FILES) |
---|
| 71 | |
---|
| 72 | |
---|
| 73 | # Generate source groups according to the directory structure |
---|
| 74 | FUNCTION(GENERATE_SOURCE_GROUPS) |
---|
| 75 | |
---|
| 76 | FOREACH(_file ${ARGN}) |
---|
| 77 | GET_SOURCE_FILE_PROPERTY(_full_filepath ${_file} LOCATION) |
---|
| 78 | FILE(RELATIVE_PATH _relative_path ${CMAKE_CURRENT_SOURCE_DIR} ${_full_filepath}) |
---|
[7818] | 79 | IF(NOT _relative_path MATCHES "^\\.\\./") # Has "../" at the beginning |
---|
[5929] | 80 | GET_FILENAME_COMPONENT(_relative_path ${_relative_path} PATH) |
---|
| 81 | STRING(REPLACE "/" "\\\\" _group_path "${_relative_path}") |
---|
| 82 | SOURCE_GROUP("Source\\${_group_path}" FILES ${_file}) |
---|
| 83 | ELSE() |
---|
[7415] | 84 | # File is being generated in the binary directory |
---|
| 85 | SOURCE_GROUP("Generated" FILES ${_file}) |
---|
[5929] | 86 | ENDIF() |
---|
[2620] | 87 | ENDFOREACH(_file) |
---|
| 88 | |
---|
| 89 | ENDFUNCTION(GENERATE_SOURCE_GROUPS) |
---|