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 | INCLUDE(TargetUtilities) |
---|
29 | |
---|
30 | # Configure the two headers and set some options |
---|
31 | INCLUDE(OrxonoxConfig.cmake) |
---|
32 | |
---|
33 | ################ Library Defines ################ |
---|
34 | |
---|
35 | # Disable Boost auto linking completely |
---|
36 | ADD_COMPILER_FLAGS("-DBOOST_ALL_NO_LIB") |
---|
37 | |
---|
38 | # If no defines are specified, these libs get linked statically |
---|
39 | ADD_COMPILER_FLAGS("-DBOOST_ALL_DYN_LINK" WIN32 LINK_BOOST_DYNAMIC) |
---|
40 | ADD_COMPILER_FLAGS("-DENET_DLL" WIN32 LINK_ENET_DYNAMIC) |
---|
41 | ADD_COMPILER_FLAGS("-DLUA_BUILD_AS_DLL" WIN32 LINK_LUA_DYNAMIC) |
---|
42 | ADD_COMPILER_FLAGS("-DOIS_DYNAMIC_LIB") |
---|
43 | ADD_COMPILER_FLAGS("-DZLIB_DLL" WIN32 LINK_ZLIB_DYNAMIC) |
---|
44 | # If no defines are specified, these libs get linked dynamically |
---|
45 | ADD_COMPILER_FLAGS("-DCEGUI_STATIC" WIN32 NOT LINK_CEGUI_DYNAMIC) |
---|
46 | ADD_COMPILER_FLAGS("-DOGRE_STATIC_LIB" WIN32 NOT LINK_OGRE_DYNAMIC) |
---|
47 | ADD_COMPILER_FLAGS("-DSTATIC_BUILD" WIN32 NOT LINK_TCL_DYNAMIC) |
---|
48 | |
---|
49 | # Use TinyXML++ |
---|
50 | ADD_COMPILER_FLAGS("-DTIXML_USE_TICPP") |
---|
51 | |
---|
52 | ############## Include Directories ############## |
---|
53 | |
---|
54 | # Set the search paths for include files |
---|
55 | INCLUDE_DIRECTORIES( |
---|
56 | # External |
---|
57 | ${OGRE_INCLUDE_DIR} |
---|
58 | ${CEGUI_INCLUDE_DIR} |
---|
59 | ${ENET_INCLUDE_DIR} |
---|
60 | ${Boost_INCLUDE_DIRS} |
---|
61 | ${OPENAL_INCLUDE_DIRS} |
---|
62 | ${ALUT_INCLUDE_DIR} |
---|
63 | ${VORBIS_INCLUDE_DIR} |
---|
64 | ${OGG_INCLUDE_DIR} |
---|
65 | ${LUA_INCLUDE_DIR} |
---|
66 | ${TCL_INCLUDE_PATH} |
---|
67 | ${DIRECTX_INCLUDE_DIR} |
---|
68 | ${ZLIB_INCLUDE_DIR} |
---|
69 | ${VLD_INCLUDE_DIR} |
---|
70 | |
---|
71 | # All library includes are prefixed with the path to avoid conflicts |
---|
72 | ${CMAKE_CURRENT_SOURCE_DIR} |
---|
73 | # Bullet headers really need the include directory |
---|
74 | ${CMAKE_CURRENT_SOURCE_DIR}/external/bullet |
---|
75 | # OIS headers need the root dir as well |
---|
76 | ${CMAKE_CURRENT_SOURCE_DIR}/external/ois |
---|
77 | # OrxonoxConfig.h |
---|
78 | ${CMAKE_CURRENT_BINARY_DIR} |
---|
79 | # Tolua bind files for Core |
---|
80 | ${CMAKE_CURRENT_BINARY_DIR}/libraries/core/${CMAKE_CFG_INTDIR} |
---|
81 | # Tolua bind files for Orxonox |
---|
82 | ${CMAKE_CURRENT_BINARY_DIR}/orxonox/${CMAKE_CFG_INTDIR} |
---|
83 | |
---|
84 | # Add the base directories for convenience |
---|
85 | ${CMAKE_CURRENT_SOURCE_DIR}/external |
---|
86 | ${CMAKE_CURRENT_SOURCE_DIR}/libraries |
---|
87 | ${CMAKE_CURRENT_SOURCE_DIR}/modules |
---|
88 | ${CMAKE_CURRENT_SOURCE_DIR}/orxonox |
---|
89 | ) |
---|
90 | |
---|
91 | IF(CEGUILUA_USE_INTERNAL_LIBRARY) |
---|
92 | INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/external/ceguilua/ceguilua-${CEGUI_VERSION}) |
---|
93 | ENDIF() |
---|
94 | |
---|
95 | ################ Sub Directories ################ |
---|
96 | |
---|
97 | ADD_SUBDIRECTORY(external) |
---|
98 | ADD_SUBDIRECTORY(libraries) |
---|
99 | ADD_SUBDIRECTORY(modules) |
---|
100 | ADD_SUBDIRECTORY(orxonox) |
---|
101 | |
---|
102 | ################ Executable ################ |
---|
103 | |
---|
104 | # Translate argument |
---|
105 | IF(ORXONOX_USE_WINMAIN) |
---|
106 | SET(ORXONOX_WIN32 WIN32) |
---|
107 | ENDIF() |
---|
108 | |
---|
109 | ORXONOX_ADD_EXECUTABLE(orxonox-main |
---|
110 | # When defined as WIN32 this removes the console window on Windows |
---|
111 | ${ORXONOX_WIN32} |
---|
112 | LINK_LIBRARIES |
---|
113 | orxonox |
---|
114 | SOURCE_FILES |
---|
115 | Orxonox.cc |
---|
116 | OUTPUT_NAME orxonox |
---|
117 | ) |
---|
118 | |
---|
119 | GET_TARGET_PROPERTY(_exec_loc orxonox-main LOCATION) |
---|
120 | GET_FILENAME_COMPONENT(_exec_name ${_exec_loc} NAME) |
---|
121 | SET(ORXONOX_EXECUTABLE_NAME ${_exec_name} CACHE INTERNAL "") |
---|