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