Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/CMakeLists.txt @ 10262

Last change on this file since 10262 was 10186, checked in by landauf, 9 years ago

trying to make cmake policy settings backwards compatible

  • Property svn:eol-style set to native
File size: 4.1 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 #    Configures the compilers and sets build options.
24 #
25
26# Required macros and functions
27INCLUDE(FlagUtilities)
28INCLUDE(TargetUtilities)
29
30INCLUDE(SourceConfig.cmake)
31
32# Configure the two headers and set some options
33INCLUDE(OrxonoxConfig.cmake)
34
35################ Sub Directories ################
36
37ADD_SUBDIRECTORY(external)
38ADD_SUBDIRECTORY(libraries)
39ADD_SUBDIRECTORY(orxonox)
40SET(ORXONOX_MODULES CACHE INTERNAL "")
41ADD_SUBDIRECTORY(modules)
42
43################## Executable ###################
44
45INCLUDE_DIRECTORIES(
46  ${CMAKE_CURRENT_SOURCE_DIR}/libraries
47  ${CMAKE_CURRENT_SOURCE_DIR}/orxonox
48)
49
50# Translate argument
51IF(ORXONOX_USE_WINMAIN)
52  SET(ORXONOX_WIN32 WIN32)
53ENDIF()
54
55SET(ORXONOX_MAIN_FILES Orxonox.cc)
56
57# Add special source file for OS X
58IF(APPLE)
59  LIST(APPEND ORXONOX_MAIN_FILES OrxonoxMac.mm)
60ENDIF()
61
62ORXONOX_ADD_EXECUTABLE(orxonox-main
63  # When defined as WIN32 this removes the console window on Windows
64  ${ORXONOX_WIN32}
65  LINK_LIBRARIES
66    orxonox
67  SOURCE_FILES
68    ${ORXONOX_MAIN_FILES}
69  OUTPUT_NAME orxonox
70)
71# Main executable should depend on all modules
72ADD_DEPENDENCIES(orxonox-main ${ORXONOX_MODULES})
73
74# Get name to configure the run scripts
75IF (POLICY CMP0026)
76  CMAKE_POLICY(PUSH)
77  CMAKE_POLICY(SET CMP0026 OLD) # we only use the file's name, not its actual location, so the old policy is fine
78ENDIF()
79GET_TARGET_PROPERTY(_exec_loc orxonox-main LOCATION)
80GET_FILENAME_COMPONENT(_exec_name ${_exec_loc} NAME)
81SET(ORXONOX_EXECUTABLE_NAME ${_exec_name} CACHE INTERNAL "")
82IF (POLICY CMP0026)
83  CMAKE_POLICY(POP) # set policy back to original settings
84ENDIF()
85
86
87# Apple Mac OS X specific build settings
88IF(APPLE)
89  # On Apple we need to link to AppKit and Foundation frameworks
90  TARGET_LINK_LIBRARIES(orxonox-main
91    "-framework AppKit"
92    "-framework Foundation"
93  )
94
95  # Post-build step for the creation of the Dev-App bundle
96  INCLUDE(PrepareDevBundle)
97  ADD_CUSTOM_COMMAND(
98    TARGET orxonox-main
99    POST_BUILD
100    # Copy the executable into the Orxonox.app
101    COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/${ORXONOX_EXECUTABLE_NAME}" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/${PROJECT_NAME}.app/Contents/MacOS"
102    # Copy the dev-build marker file to Orxonox.app
103    COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/orxonox_dev_build.keep_me" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/${PROJECT_NAME}.app/Contents/MacOS"
104    # Create a shortcut of the application to the root of the build tree
105    COMMAND ${CMAKE_COMMAND} -E create_symlink "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/${PROJECT_NAME}.app" "${CMAKE_BINARY_DIR}/${PROJECT_NAME}.app"
106  )
107ENDIF(APPLE)
108
109#################### Doxygen ####################
110
111# Prepare include paths for Doxygen. This is necessary to display
112# the correct path to use when including a file, e.g.
113# core/XMLPort.h instead of src/core/XMLPort.h
114
115INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/modules)
116GET_DIRECTORY_PROPERTY(_temp INCLUDE_DIRECTORIES)
117# Replace ';' by spaces
118STRING(REPLACE ";" " " _temp "${_temp}")
119SET(DOXYGEN_INCLUDE_DIRECTORIES "${_temp}" PARENT_SCOPE)
Note: See TracBrowser for help on using the repository browser.