Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/resource2/src/CMakeLists.txt @ 5664

Last change on this file since 5664 was 5664, checked in by rgrieder, 15 years ago
  • Moved all (as far as possible) build related CMake options and switches to src/OrxonoxConfig.cmake (new file). This should my constant problems of finding options I've created some time ago…
  • Renamed BuildConfig to CompilerConfig (since that's what it has become now).
  • Moved all installation related options and paths to cmake/InstallConfig.cmake (new file)
  • Note: I moved the very basic options to the root CMLs like default paths (bin, lib, doc, etc.), output directories and configuration type.

Actual code changes are absolutely minimal, maybe a few lines or so.

  • Property svn:eol-style set to native
File size: 3.7 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
30# Configure the two headers and set some options
31INCLUDE(OrxonoxConfig.cmake)
32
33################ Library Defines ################
34
35# Disable Boost auto linking completely
36ADD_COMPILER_FLAGS("-DBOOST_ALL_NO_LIB")
37
38# If no defines are specified, these libs get linked statically
39ADD_COMPILER_FLAGS("-DBOOST_ALL_DYN_LINK" WIN32 LINK_BOOST_DYNAMIC)
40ADD_COMPILER_FLAGS("-DENET_DLL"           WIN32 LINK_ENET_DYNAMIC)
41ADD_COMPILER_FLAGS("-DLUA_BUILD_AS_DLL"   WIN32 LINK_LUA_DYNAMIC)
42ADD_COMPILER_FLAGS("-DOIS_DYNAMIC_LIB")
43ADD_COMPILER_FLAGS("-DZLIB_DLL"           WIN32 LINK_ZLIB_DYNAMIC)
44# If no defines are specified, these libs get linked dynamically
45ADD_COMPILER_FLAGS("-DCEGUI_STATIC"       WIN32 NOT LINK_CEGUI_DYNAMIC)
46ADD_COMPILER_FLAGS("-DOGRE_STATIC_LIB"    WIN32 NOT LINK_OGRE_DYNAMIC)
47ADD_COMPILER_FLAGS("-DSTATIC_BUILD"       WIN32 NOT LINK_TCL_DYNAMIC)
48
49# Use TinyXML++
50ADD_COMPILER_FLAGS("-DTIXML_USE_TICPP")
51
52############## Include Directories ##############
53
54# Set the search paths for include files
55INCLUDE_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}/bullet
75  # OIS headers need the root dir as well
76  ${CMAKE_CURRENT_SOURCE_DIR}/ois
77  # Convenience directory
78  ${CMAKE_CURRENT_SOURCE_DIR}/orxonox
79  # OrxonoxConfig.h
80  ${CMAKE_CURRENT_BINARY_DIR}
81  # Tolua bind files for Core
82  ${CMAKE_CURRENT_BINARY_DIR}/core/${CMAKE_CFG_INTDIR}
83  # Tolua bind files for Orxonox
84  ${CMAKE_CURRENT_BINARY_DIR}/orxonox/${CMAKE_CFG_INTDIR}
85)
86
87
88################ Sub Directories ################
89
90# Third party libraries
91ADD_SUBDIRECTORY(tolua)
92
93# Include CEGUILua if not requested otherwise
94IF(CEGUILUA_USE_INTERNAL_LIBRARY)
95  IF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua/ceguilua-${CEGUI_VERSION})
96    MESSAGE(FATAL_ERROR "CEGUILua version not found in src folder. Update list of supported versions in LibraryConfig.cmake!")
97  ENDIF()
98
99  INCLUDE_DIRECTORIES(ceguilua/ceguilua-${CEGUI_VERSION})
100  ADD_SUBDIRECTORY(ceguilua)
101ENDIF()
102
103ADD_SUBDIRECTORY(bullet)
104ADD_SUBDIRECTORY(cpptcl)
105ADD_SUBDIRECTORY(ogreceguirenderer)
106ADD_SUBDIRECTORY(ois)
107ADD_SUBDIRECTORY(tinyxml)
108
109# Orxonox code
110ADD_SUBDIRECTORY(util)
111ADD_SUBDIRECTORY(core)
112ADD_SUBDIRECTORY(network)
113ADD_SUBDIRECTORY(orxonox)
Note: See TracBrowser for help on using the repository browser.