Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/core/CMakeLists.txt @ 3370

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

Merged resource branch back to the trunk. Changes:

  • Automated graphics loading by evaluating whether a GameState requires it
  • Using native Tcl library (x3n)

Windows users: Update your dependency package!

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