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 |
---|
27 | INCLUDE(FlagUtilities) |
---|
28 | |
---|
29 | ####### Library Behaviour (dependencies) ######## |
---|
30 | |
---|
31 | # Disable auto linking completely for Boost and POCO |
---|
32 | ADD_COMPILER_FLAGS("-DBOOST_ALL_NO_LIB") |
---|
33 | ADD_COMPILER_FLAGS("-DPOCO_NO_AUTOMATIC_LIBS") |
---|
34 | |
---|
35 | IF(WIN32) |
---|
36 | # If no defines are specified, these libs get linked statically |
---|
37 | ADD_COMPILER_FLAGS("-DBOOST_ALL_DYN_LINK" LINK_BOOST_DYNAMIC) |
---|
38 | #ADD_COMPILER_FLAGS("-DENET_DLL" LINK_ENET_DYNAMIC) |
---|
39 | ADD_COMPILER_FLAGS("-DLUA_BUILD_AS_DLL" LINK_LUA5.1_DYNAMIC) |
---|
40 | # If no defines are specified, these libs get linked dynamically |
---|
41 | ADD_COMPILER_FLAGS("-DCEGUI_STATIC -DTOLUA_STATIC" NOT LINK_CEGUI_DYNAMIC) |
---|
42 | ADD_COMPILER_FLAGS("-DOGRE_STATIC_LIB" NOT LINK_OGRE_DYNAMIC) |
---|
43 | ADD_COMPILER_FLAGS("-DSTATIC_BUILD" NOT LINK_TCL_DYNAMIC) |
---|
44 | |
---|
45 | # Target Windows XP as minimum Windows version |
---|
46 | # And try to catch all the different macro defines for that... |
---|
47 | ADD_COMPILER_FLAGS("-D_WIN32_WINNT=0x0501") |
---|
48 | ADD_COMPILER_FLAGS("-D_WIN32_WINDOWS=0x0501") |
---|
49 | ADD_COMPILER_FLAGS("-DWINVER=0x0501") |
---|
50 | ADD_COMPILER_FLAGS("-DNTDDI_VERSION=0x05010000") |
---|
51 | ENDIF(WIN32) |
---|
52 | |
---|
53 | # Visual Leak Dectector configuration |
---|
54 | IF(MSVC AND VLD_FOUND) |
---|
55 | OPTION(VISUAL_LEAK_DETECTOR_ENABLE "Memory leak detector" OFF) |
---|
56 | IF(VISUAL_LEAK_DETECTOR_ENABLE) |
---|
57 | # Force library linking by forcing the inclusion of a symbol |
---|
58 | ADD_LINKER_FLAGS("-INCLUDE:__imp_?g_vld@@3VVisualLeakDetector@@A" Debug) |
---|
59 | IF(MSVC90) |
---|
60 | # VS 2008 incremental linker crashes with /INCLUDE most of the time |
---|
61 | REMOVE_LINKER_FLAGS("-INCREMENTAL:YES" Debug) |
---|
62 | ADD_LINKER_FLAGS ("-INCREMENTAL:NO" Debug) |
---|
63 | ENDIF() |
---|
64 | ENDIF() |
---|
65 | ENDIF() |
---|
66 | |
---|
67 | ######### Library Behaviour (external) ########## |
---|
68 | |
---|
69 | # Use TinyXML++ |
---|
70 | ADD_COMPILER_FLAGS("-DTIXML_USE_TICPP") |
---|
71 | |
---|
72 | # Default linking for externals |
---|
73 | IF(CMAKE_BUILD_TYPE MATCHES "(Debug|RelForDevs)") |
---|
74 | SET(_default_link_mode "SHARED") |
---|
75 | ELSE() |
---|
76 | SET(_default_link_mode "STATIC") |
---|
77 | ENDIF() |
---|
78 | SET(_message "Link mode for external libraries that we build ourselves. |
---|
79 | MSVC Note: certain libraries will not be linked shared.") |
---|
80 | SET(ORXONOX_EXTERNAL_LINK_MODE "${_default_link_mode}" CACHE STRING "${_message}") |
---|
81 | |
---|
82 | IF(ORXONOX_EXTERNAL_LINK_MODE STREQUAL "SHARED") |
---|
83 | SET(_external_shared_link TRUE) |
---|
84 | ELSE() |
---|
85 | SET(_external_shared_link FALSE) |
---|
86 | ENDIF() |
---|
87 | # If no defines are specified, these libs get linked dynamically |
---|
88 | ADD_COMPILER_FLAGS("-DENET_DLL" WIN32 _external_shared_link) |
---|
89 | ADD_COMPILER_FLAGS("-DOGRE_GUIRENDERER_STATIC_LIB" WIN32 NOT _external_shared_link) |
---|
90 | ADD_COMPILER_FLAGS("-DOIS_STATIC_LIB" WIN32 NOT _external_shared_link) |
---|
91 | |
---|
92 | ############## Include Directories ############## |
---|
93 | |
---|
94 | # Set the search paths for include files |
---|
95 | INCLUDE_DIRECTORIES( |
---|
96 | # OrxonoxConfig.h |
---|
97 | ${CMAKE_CURRENT_BINARY_DIR} |
---|
98 | |
---|
99 | # All includes in "externals" should be prefixed with the path |
---|
100 | # relative to "external" to avoid conflicts |
---|
101 | ../src/external |
---|
102 | # Include directories needed even if only included by Orxonox |
---|
103 | ../src/external/bullet |
---|
104 | ../src/external/ois |
---|
105 | ) |
---|
106 | |
---|
107 | INCLUDE_DIRECTORIES( |
---|
108 | SYSTEM |
---|
109 | |
---|
110 | # External |
---|
111 | ${OGRE_INCLUDE_DIR} |
---|
112 | ${CEGUI_INCLUDE_DIR} |
---|
113 | ${CEGUI_TOLUA_INCLUDE_DIR} |
---|
114 | #${ENET_INCLUDE_DIR} |
---|
115 | ${Boost_INCLUDE_DIRS} |
---|
116 | ${POCO_INCLUDE_DIR} |
---|
117 | ${OPENAL_INCLUDE_DIRS} |
---|
118 | ${ALUT_INCLUDE_DIR} |
---|
119 | ${VORBIS_INCLUDE_DIR} |
---|
120 | ${OGG_INCLUDE_DIR} |
---|
121 | ${LUA5.1_INCLUDE_DIR} |
---|
122 | ${TCL_INCLUDE_PATH} |
---|
123 | ${DIRECTX_INCLUDE_DIR} |
---|
124 | ${ZLIB_INCLUDE_DIR} |
---|
125 | ) |
---|
126 | |
---|
127 | IF(CEGUI_OLD_VERSION) |
---|
128 | INCLUDE_DIRECTORIES(SYSTEM ${CEGUILUA_INCLUDE_DIR}) |
---|
129 | ENDIF() |
---|
130 | |
---|
131 | IF (DBGHELP_FOUND) |
---|
132 | INCLUDE_DIRECTORIES(SYSTEM ${DBGHELP_INCLUDE_DIR}) |
---|
133 | ENDIF() |
---|
134 | |
---|
135 | ############## CEGUI OGRE Renderer ############## |
---|
136 | |
---|
137 | IF(CEGUI_OGRE_RENDERER_BUILD_REQUIRED) |
---|
138 | SET(CEGUI_OGRE_RENDERER_LIBRARY ogreceguirenderer_orxonox) |
---|
139 | ENDIF() |
---|
140 | |
---|
141 | ################### Tolua Bind ################## |
---|
142 | |
---|
143 | # Add hook script to the lua code that generates the bindings |
---|
144 | SET(TOLUA_PARSER_HOOK_SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/libraries/core/ToluaInterfaceHook.lua) |
---|
145 | SET(TOLUA_PARSER_DEPENDENCIES ${TOLUA_PARSER_DEPENDENCIES} ${TOLUA_PARSER_HOOK_SCRIPT}) |
---|