Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/src/CMakeLists.txt @ 2634

Last change on this file since 2634 was 2634, checked in by rgrieder, 15 years ago

Fixed INSTALL target for Windows. The problem was that RUNTIME DESTINATION was missing for the libraries because a dll is considered a runtime target.

  • Property svn:eol-style set to native
File size: 2.8 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################ Various Options ################
21
22# various macro includes
23INCLUDE(FlagUtilities)
24INCLUDE(GenerateToluaBindings)
25INCLUDE(InstallUtilities)
26INCLUDE(SourceFileUtilities)
27
28# Use TinyXML++
29ADD_COMPILER_FLAGS("-DTIXML_USE_TICPP")
30# OIS dynamic linking requires macro definition, at least for Windows
31ADD_COMPILER_FLAGS("-DOIS_DYNAMIC_LIB")
32# Tolua binding speedup if required
33ADD_COMPILER_FLAGS("-DTOLUA_RELEASE" Release MinSizeRel TOLUA_PARSER_RELEASE)
34
35################ OrxonoxConfig.h ################
36
37# Copy and configure OrxonoxConfig which gets included in every file
38CONFIGURE_FILE(OrxonoxConfig.h.in ${CMAKE_CURRENT_BINARY_DIR}/OrxonoxConfig.h)
39
40
41############## Include Directories ##############
42
43# Set the search paths for include files
44INCLUDE_DIRECTORIES(
45  # External
46  ${OGRE_INCLUDE_DIR}
47  ${CEGUI_INCLUDE_DIR}
48  ${ENET_INCLUDE_DIR}
49  ${Boost_INCLUDE_DIRS}
50  ${OPENAL_INCLUDE_DIRS}
51  ${ALUT_INCLUDE_DIR}
52  ${VORBIS_INCLUDE_DIR}
53  ${OGG_INCLUDE_DIR}
54  ${LUA_INCLUDE_DIR}
55  ${TCL_INCLUDE_PATH}
56  ${DIRECTX_INCLUDE_DIR}
57  ${ZLIB_INCLUDE_DIR}
58
59  # Internal
60  .
61  orxonox
62  # Required for tolua bind and config files that are in the binary folder
63  ${CMAKE_CURRENT_BINARY_DIR}
64  ${CMAKE_CURRENT_BINARY_DIR}/orxonox
65)
66
67
68################ Sub Directories ################
69
70# Third party libraries
71ADD_SUBDIRECTORY(tolua)
72
73# Include CEGUILua if not requested otherwise
74IF(CEGUILUA_USE_INTERNAL_LIBRARY)
75  IF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua/ceguilua-${CEGUI_VERSION})
76    MESSAGE(FATAL_ERROR "CEGUILua version not found in src folder. Update list of supported versions in LibraryConfig.cmake!")
77  ENDIF()
78
79  INCLUDE_DIRECTORIES(ceguilua/ceguilua-${CEGUI_VERSION})
80  ADD_SUBDIRECTORY(ceguilua)
81ENDIF()
82
83ADD_SUBDIRECTORY(cpptcl)
84ADD_SUBDIRECTORY(ogreceguirenderer)
85ADD_SUBDIRECTORY(ois)
86ADD_SUBDIRECTORY(tinyxml)
87
88# Orxonox code
89ADD_SUBDIRECTORY(util)
90ADD_SUBDIRECTORY(core)
91ADD_SUBDIRECTORY(audio)
92ADD_SUBDIRECTORY(network)
93ADD_SUBDIRECTORY(orxonox)
Note: See TracBrowser for help on using the repository browser.