Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 4862 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
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
[2087]25  Event.cc
[2896]26  Game.cc
27  GameMode.cc
[1755]28  GameState.cc
[3370]29  GraphicsManager.cc
30  GUIManager.cc
[1543]31  Language.cc
[2087]32  LuaBind.cc
[1747]33  ObjectListBase.cc
[1543]34  OrxonoxClass.cc
[3327]35  WindowEventListener.cc
[1543]36
37  # command
38  ArgumentCompletionFunctions.cc
39  CommandEvaluation.cc
[1505]40  CommandExecutor.cc
[1755]41  CommandLine.cc
[1505]42  ConsoleCommand.cc
43  ConsoleCommandCompilation.cc
[1543]44  Executor.cc
45
46  # hierarchy
47  Factory.cc
48  Identifier.cc
49  MetaObjectList.cc
50
51  # level
52  BaseObject.cc
53  ClassTreeMask.cc
[1505]54  Loader.cc
55  Namespace.cc
56  NamespaceNode.cc
[2087]57  Template.cc
[1543]58  XMLPort.cc
[2087]59  XMLNameListener.cc
[1543]60
61  # shell
62  IRC.cc
63  Shell.cc
[1505]64  TclBind.cc
65  TclThreadManager.cc
[3304]66 
67  # multithreading
68  Thread.cc
69  ThreadPool.cc
[1505]70)
[2710]71ADD_SUBDIRECTORY(input)
[1505]72
[3196]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}
[3370]84    ${Boost_FILESYSTEM_LIBRARY}
85    ${Boost_SYSTEM_LIBRARY} # Filesystem dependency
[3196]86    ${Boost_THREAD_LIBRARY}
[3370]87    ${Boost_DATE_TIME_LIBRARY} # Thread dependency
88    ${CEGUI_LIBRARY}
89    ${CEGUILUA_LIBRARY}
[3196]90    ${LUA_LIBRARIES}
91    cpptcl_orxonox
[3370]92    ogreceguirenderer_orxonox
[3196]93    ois_orxonox
94    tinyxml++_orxonox
95    tolua++_orxonox
96    util
97  SOURCE_FILES
98    ${CORE_SRC_FILES}
[1505]99)
Note: See TracBrowser for help on using the repository browser.