Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core5/src/libraries/core/CMakeLists.txt @ 5778

Last change on this file since 5778 was 5778, checked in by landauf, 15 years ago

Removed the Factory class.
Moved the networkID↔Identifier map from Factory to Identifier.
Replaced the name↔Identifier map from Factory with the already existing Identifier map in Identifier. This map additionally contains Identifiers without Factory. You can separate them with the new function identifier→hasFactory().

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