Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core5/cmake/SourceFileUtilities.cmake @ 5870

Last change on this file since 5870 was 5870, checked in by rgrieder, 15 years ago

Added new build system feature: Combining multiple source files into one. All you have to do is group a few source files with "COMPILATION_BEGIN compilation_name" and COMPILATION_END.
This could also help reducing the compile time because 10 small files with the same includes compile combined just a bit slower than one of them.

  • Property svn:eol-style set to native
File size: 4.5 KB
Line 
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.
26 #                             Also compiles multiple source files into a single
27 #                             one by including them
28 #                             Use COMPILATION_[BEGIN|END] in
29 #                             [ADD|SET]_SOURCE_FILES and specify the name of
30 #                             the new source file after COMPILATION_BEGIN
31 #    GET_ALL_HEADER_FILES   - Finds all header files recursively.
32 #    GENERATE_SOURCE_GROUPS - Set Visual Studio source groups.
33 #
34
35FUNCTION(PREPARE_SOURCE_FILES)
36  SET(_fullpath_sources)
37  FOREACH(_file ${ARGN})
38    IF(_file STREQUAL "COMPILATION_BEGIN")
39      SET(_compile TRUE)
40      # Next file is the name of the compilation
41      SET(_get_name TRUE)
42    ELSEIF(_get_name)
43      SET(_get_name FALSE)
44      SET(_compilation_name ${_file})
45    ELSEIF(_file STREQUAL "COMPILATION_END")
46      IF(NOT _compilation_name)
47        MESSAGE(FATAL_ERROR "No name provided for source file compilation")
48      ENDIF()
49      FOREACH(_file2 ${_compilation})
50        SET(_include_string "${_include_string}\n#include \"${_file2}\"")
51      ENDFOREACH(_file2)
52      IF(EXISTS ${CMAKE_CURRENT_BINARY_DIR}/${_compilation_name})
53        FILE(READ ${CMAKE_CURRENT_BINARY_DIR}/${_compilation_name} _include_string_file)
54      ENDIF()
55      IF(NOT _include_string STREQUAL "${_include_string_file}")
56        FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}/${_compilation_name} "${_include_string}")
57      ENDIF()
58      LIST(APPEND _fullpath_sources ${CMAKE_CURRENT_BINARY_DIR}/${_compilation_name})
59      SET(_compilation_name)
60      SET(_compilation)
61      SET(_compile FALSE)
62    ELSE()
63      # Prefix the full path
64      GET_SOURCE_FILE_PROPERTY(_filepath ${_file} LOCATION)
65      LIST(APPEND _fullpath_sources ${_filepath})
66      IF(_compile)
67        LIST(APPEND _compilation ${_filepath})
68        LIST(APPEND _fullpath_sources "H")
69      ENDIF()
70    ENDIF()
71  ENDFOREACH(_file)
72  SET(_fullpath_sources ${_fullpath_sources} PARENT_SCOPE)
73ENDFUNCTION(PREPARE_SOURCE_FILES)
74
75
76# Adds source files with the full path to a list
77FUNCTION(ADD_SOURCE_FILES _varname)
78  PREPARE_SOURCE_FILES(${ARGN})
79  # Write into the cache to avoid variable scoping in subdirs
80  SET(${_varname} ${${_varname}} ${_fullpath_sources} CACHE INTERNAL "Do not edit")
81ENDFUNCTION(ADD_SOURCE_FILES)
82
83
84# Sets source files with the full path
85FUNCTION(SET_SOURCE_FILES _varname)
86  PREPARE_SOURCE_FILES(${ARGN})
87  # Write into the cache to avoid variable scoping in subdirs
88  SET(${_varname} ${_fullpath_sources} CACHE INTERNAL "Do not edit")
89ENDFUNCTION(SET_SOURCE_FILES)
90
91
92# Search the entire directory tree for header files and add them to a variable
93MACRO(GET_ALL_HEADER_FILES _target_varname)
94  FILE(GLOB_RECURSE ${_target_varname} ${CMAKE_CURRENT_SOURCE_DIR} "*.h")
95ENDMACRO(GET_ALL_HEADER_FILES)
96
97
98# Generate source groups according to the directory structure
99FUNCTION(GENERATE_SOURCE_GROUPS)
100
101  FOREACH(_file ${ARGN})
102    GET_SOURCE_FILE_PROPERTY(_full_filepath ${_file} LOCATION)
103    FILE(RELATIVE_PATH _relative_path ${CMAKE_CURRENT_SOURCE_DIR} ${_full_filepath})
104    IF(NOT _relative_path MATCHES "^\\.\\.")
105      GET_FILENAME_COMPONENT(_relative_path ${_relative_path} PATH)
106      STRING(REPLACE "/" "\\\\" _group_path "${_relative_path}")
107      SOURCE_GROUP("Source\\${_group_path}" FILES ${_file})
108    ELSE()
109      # Has to be a compilation
110      SOURCE_GROUP("Compilations" FILES ${_file})
111    ENDIF()
112  ENDFOREACH(_file)
113
114ENDFUNCTION(GENERATE_SOURCE_GROUPS)
Note: See TracBrowser for help on using the repository browser.