Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Moved Clock from core to util (used in Scope anyway).

  • 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  ConfigFileManager.cc
22  ConfigValueContainer.cc
23  Core.cc
24  DynLib.cc
25  DynLibManager.cc
26  Event.cc
27  Game.cc
28  GameMode.cc
29  GameState.cc
30  GraphicsManager.cc
31  GUIManager.cc
32  Language.cc
33  LuaState.cc
34  MemoryArchive.cc
35  ObjectListBase.cc
36  OrxonoxClass.cc
37  PathConfig.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.