Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/resource2/src/core/CMakeLists.txt @ 5653

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

Added class to handle handle resources more easily via Ogre::ResourceGroupManager.
And modified the XMLFile to store the resource group as well.

  • Property svn:eol-style set to native
File size: 2.3 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
20SET_SOURCE_FILES(CORE_SRC_FILES
21  Clock.cc
22  ConfigFileManager.cc
23  ConfigValueContainer.cc
24  Core.cc
25  Event.cc
26  Game.cc
27  GameMode.cc
28  GameState.cc
29  GraphicsManager.cc
30  GUIManager.cc
31  Language.cc
32  LuaBind.cc
33  ObjectListBase.cc
34  OrxonoxClass.cc
35  Resource.cc
36  WindowEventListener.cc
37
38  # command
39  ArgumentCompletionFunctions.cc
40  CommandEvaluation.cc
41  CommandExecutor.cc
42  CommandLine.cc
43  ConsoleCommand.cc
44  ConsoleCommandCompilation.cc
45  Executor.cc
46
47  # hierarchy
48  Factory.cc
49  Identifier.cc
50  MetaObjectList.cc
51
52  # level
53  BaseObject.cc
54  ClassTreeMask.cc
55  Loader.cc
56  Namespace.cc
57  NamespaceNode.cc
58  Template.cc
59  XMLPort.cc
60  XMLNameListener.cc
61
62  # shell
63  IRC.cc
64  Shell.cc
65  TclBind.cc
66  TclThreadManager.cc
67 
68  # multithreading
69  Thread.cc
70  ThreadPool.cc
71)
72ADD_SUBDIRECTORY(input)
73
74ORXONOX_ADD_LIBRARY(core
75  FIND_HEADER_FILES
76  TOLUA_FILES
77    CommandExecutor.h
78    LuaBind.h
79  DEFINE_SYMBOL
80    "CORE_SHARED_BUILD"
81  PCH_FILE
82    CorePrecompiledHeaders.h
83  LINK_LIBRARIES
84    ${OGRE_LIBRARY}
85    ${Boost_FILESYSTEM_LIBRARY}
86    ${Boost_SYSTEM_LIBRARY} # Filesystem dependency
87    ${Boost_THREAD_LIBRARY}
88    ${Boost_DATE_TIME_LIBRARY} # Thread dependency
89    ${CEGUI_LIBRARY}
90    ${CEGUILUA_LIBRARY}
91    ${LUA_LIBRARIES}
92    cpptcl_orxonox
93    ogreceguirenderer_orxonox
94    ois_orxonox
95    tinyxml++_orxonox
96    tolua++_orxonox
97    util
98  SOURCE_FILES
99    ${CORE_SRC_FILES}
100)
Note: See TracBrowser for help on using the repository browser.