| [2710] | 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 |  # | 
|---|
| [5695] | 19 |  # | 
|---|
 | 20 |  #  Author: | 
|---|
 | 21 |  #    Reto Grieder | 
|---|
 | 22 |  #  Description: | 
|---|
 | 23 |  #    Configures the compilers and sets build options. | 
|---|
 | 24 |  # | 
|---|
| [1505] | 25 |  | 
|---|
| [5695] | 26 | # Required macros and functions | 
|---|
| [2710] | 27 | INCLUDE(FlagUtilities) | 
|---|
| [3196] | 28 | INCLUDE(TargetUtilities) | 
|---|
| [2710] | 29 |  | 
|---|
| [5695] | 30 | # Configure the two headers and set some options | 
|---|
 | 31 | INCLUDE(OrxonoxConfig.cmake) | 
|---|
| [2710] | 32 |  | 
|---|
| [7163] | 33 | ####### Library Behaviour (dependencies) ######## | 
|---|
| [2710] | 34 |  | 
|---|
| [5695] | 35 | # If no defines are specified, these libs get linked statically | 
|---|
| [7421] | 36 | #ADD_COMPILER_FLAGS("-DZLIB_DLL"           WIN32 LINK_ZLIB_DYNAMIC) | 
|---|
| [5695] | 37 | # If no defines are specified, these libs get linked dynamically | 
|---|
| [7421] | 38 | #ADD_COMPILER_FLAGS("-DSTATIC_BUILD"       WIN32 NOT LINK_TCL_DYNAMIC) | 
|---|
| [2710] | 39 |  | 
|---|
| [7163] | 40 | ######### Library Behaviour (external) ########## | 
|---|
 | 41 |  | 
|---|
 | 42 | # Default linking for externals is SHARED | 
|---|
 | 43 | SET(ORXONOX_EXTERNAL_LINK_MODE SHARED CACHE STRING "Link mode for external libraries that we build ourselves. Note: on Windows, some libraries cannot be linked shared.") | 
|---|
 | 44 |  | 
|---|
 | 45 | IF(ORXONOX_EXTERNAL_LINK_MODE STREQUAL "SHARED") | 
|---|
 | 46 |   SET(_external_shared_link TRUE) | 
|---|
 | 47 | ELSE() | 
|---|
 | 48 |   SET(_external_shared_link FALSE) | 
|---|
 | 49 | ENDIF() | 
|---|
 | 50 | # If no defines are specified, these libs get linked dynamically | 
|---|
| [7421] | 51 | #ADD_COMPILER_FLAGS("-DTOLUA_STATIC_BUILD"          WIN32 NOT _external_shared_link) | 
|---|
| [7163] | 52 |  | 
|---|
| [2710] | 53 | ############## Include Directories ############## | 
|---|
 | 54 |  | 
|---|
 | 55 | # Set the search paths for include files | 
|---|
 | 56 | INCLUDE_DIRECTORIES( | 
|---|
 | 57 |   # External | 
|---|
 | 58 |  | 
|---|
| [5752] | 59 |   # All includes in "externals" should be prefixed with the path | 
|---|
 | 60 |   # relative to "external" to avoid conflicts | 
|---|
 | 61 |   ${CMAKE_CURRENT_SOURCE_DIR}/external | 
|---|
| [5781] | 62 |   # Include directories needed even if only included by Orxonox | 
|---|
| [7421] | 63 |   #${CMAKE_CURRENT_SOURCE_DIR}/external/bullet | 
|---|
| [5752] | 64 |  | 
|---|
| [2710] | 65 |   # OrxonoxConfig.h | 
|---|
 | 66 |   ${CMAKE_CURRENT_BINARY_DIR} | 
|---|
 | 67 | ) | 
|---|
 | 68 |  | 
|---|
| [7421] | 69 | ###################### Qt4 ###################### | 
|---|
| [5781] | 70 |  | 
|---|
| [7421] | 71 | INCLUDE(${QT_USE_FILE}) | 
|---|
| [5752] | 72 |  | 
|---|
| [2710] | 73 | ################ Sub Directories ################ | 
|---|
 | 74 |  | 
|---|
| [5738] | 75 | ADD_SUBDIRECTORY(external) | 
|---|
 | 76 | ADD_SUBDIRECTORY(libraries) | 
|---|
| [5752] | 77 | ADD_SUBDIRECTORY(orxonox) | 
|---|
| [1505] | 78 |  | 
|---|
| [7401] | 79 | ################## Executable ################### | 
|---|
| [1854] | 80 |  | 
|---|
| [5752] | 81 | INCLUDE_DIRECTORIES( | 
|---|
 | 82 |   ${CMAKE_CURRENT_SOURCE_DIR}/libraries | 
|---|
 | 83 |   ${CMAKE_CURRENT_SOURCE_DIR}/orxonox | 
|---|
 | 84 | ) | 
|---|
 | 85 |  | 
|---|
| [5738] | 86 | # Translate argument | 
|---|
 | 87 | IF(ORXONOX_USE_WINMAIN) | 
|---|
 | 88 |   SET(ORXONOX_WIN32 WIN32) | 
|---|
| [2710] | 89 | ENDIF() | 
|---|
| [1810] | 90 |  | 
|---|
| [5738] | 91 | ORXONOX_ADD_EXECUTABLE(orxonox-main | 
|---|
 | 92 |   # When defined as WIN32 this removes the console window on Windows | 
|---|
 | 93 |   ${ORXONOX_WIN32} | 
|---|
 | 94 |   LINK_LIBRARIES | 
|---|
| [7423] | 95 |     ${QT_QTMAIN_LIBRARY} | 
|---|
| [5738] | 96 |     orxonox | 
|---|
 | 97 |   SOURCE_FILES | 
|---|
| [7820] | 98 |     Orxonox.cc | 
|---|
| [5738] | 99 |   OUTPUT_NAME orxonox | 
|---|
 | 100 | ) | 
|---|
| [1810] | 101 |  | 
|---|
| [5752] | 102 | # Get name to configure the run scripts | 
|---|
| [5738] | 103 | GET_TARGET_PROPERTY(_exec_loc orxonox-main LOCATION) | 
|---|
 | 104 | GET_FILENAME_COMPONENT(_exec_name ${_exec_loc} NAME) | 
|---|
 | 105 | SET(ORXONOX_EXECUTABLE_NAME ${_exec_name} CACHE INTERNAL "") | 
|---|
| [5744] | 106 |  | 
|---|
 | 107 |  | 
|---|
 | 108 | # When using Visual Studio we want to use the output directory as working | 
|---|
 | 109 | # directory and we also want to specify where the external dlls | 
|---|
 | 110 | # (lua, ogre, etc.) are. The problem hereby is that these information cannot | 
|---|
 | 111 | # be specified in CMake because they are not stored in the actual project file. | 
|---|
 | 112 | # This workaround will create a configured *.vcproj.user file that holds the | 
|---|
 | 113 | # right values. When starting the solution for the first time, | 
|---|
 | 114 | # these get written to the *vcproj.yourPCname.yourname.user | 
|---|
 | 115 | IF(MSVC) | 
|---|
 | 116 |   IF(CMAKE_CL_64) | 
|---|
 | 117 |     SET(MSVC_PLATFORM "x64") | 
|---|
 | 118 |   ELSE() | 
|---|
 | 119 |     SET(MSVC_PLATFORM "Win32") | 
|---|
 | 120 |   ENDIF() | 
|---|
 | 121 |   STRING(REGEX REPLACE "^Visual Studio ([0-9][0-9]?) .*$" "\\1" | 
|---|
 | 122 |          VISUAL_STUDIO_VERSION_SIMPLE "${CMAKE_GENERATOR}") | 
|---|
 | 123 |   CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/orxonox-main.vcproj.user.in" "${CMAKE_CURRENT_BINARY_DIR}/orxonox-main.vcproj.user") | 
|---|
 | 124 | ENDIF(MSVC) | 
|---|
| [7401] | 125 |  | 
|---|
 | 126 | #################### Doxygen #################### | 
|---|
 | 127 |  | 
|---|
 | 128 | # Prepare include paths for Doxygen. This is necessary to display | 
|---|
 | 129 | # the correct path to use when including a file, e.g. | 
|---|
 | 130 | # core/XMLPort.h instead of src/core/XMLPort.h | 
|---|
 | 131 |  | 
|---|
 | 132 | GET_DIRECTORY_PROPERTY(_temp INCLUDE_DIRECTORIES) | 
|---|
 | 133 | # Replace ';' by spaces | 
|---|
 | 134 | STRING(REPLACE ";" " " _temp "${_temp}") | 
|---|
 | 135 | SET(DOXYGEN_INCLUDE_DIRECTORIES "${_temp}" PARENT_SCOPE) | 
|---|