Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/consolecommands3/src/libraries/core/CMakeLists.txt @ 7202

Last change on this file since 7202 was 7202, checked in by landauf, 14 years ago

moved all files related to the command execution chain to core/command (includes not yet adjusted, doesn't compile)

  • Property svn:eol-style set to native
File size: 2.5 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
[7202]21  CommandLineParser.cc
[1505]22  ConfigValueContainer.cc
[1535]23  Core.cc
[5693]24  DynLib.cc
25  DynLibManager.cc
[5781]26  Event.cc
[2896]27  Game.cc
[5781]28  GameMode.cc
[1755]29  GameState.cc
[5781]30  GraphicsManager.cc
31  GUIManager.cc
[1543]32  Language.cc
[5695]33  LuaState.cc
[1747]34  ObjectListBase.cc
[1543]35  OrxonoxClass.cc
[5781]36  Resource.cc
[5929]37  ScopedSingletonManager.cc
[5781]38  WindowEventListener.cc
[1543]39
40  # hierarchy
41  Identifier.cc
42  MetaObjectList.cc
43
44  # level
45  BaseObject.cc
[5781]46  ClassTreeMask.cc
47  Loader.cc
48  Namespace.cc
49  NamespaceNode.cc
50  Template.cc
51  XMLPort.cc
52  XMLNameListener.cc
[1543]53
[5929]54COMPILATION_BEGIN FilesystemCompilation.cc
[7202]55  command/ArgumentCompletionFunctions.cc
[5929]56  ConfigFileManager.cc
57  MemoryArchive.cc
58  PathConfig.cc
59COMPILATION_END
60
61  # multithreading
62  ThreadPool.cc
63COMPILATION_BEGIN ThreadCompilation.cc
[7202]64  command/TclThreadManager.cc
[3304]65  Thread.cc
[5929]66COMPILATION_END
[1505]67)
[5929]68
[7202]69ADD_SUBDIRECTORY(command)
[5781]70ADD_SUBDIRECTORY(input)
[1505]71
[3196]72ORXONOX_ADD_LIBRARY(core
73  FIND_HEADER_FILES
74  TOLUA_FILES
[7202]75    command/CommandExecutor.h
[6417]76    ConfigFileManager.h
77    Game.h
78    GameMode.h
79    GUIManager.h
[5781]80    Loader.h
[5695]81    LuaState.h
[6417]82    PathConfig.h
83    input/InputManager.h
84    input/KeyBinder.h
85    input/KeyBinderManager.h
[3196]86  PCH_FILE
87    CorePrecompiledHeaders.h
88  LINK_LIBRARIES
89    ${OGRE_LIBRARY}
[3370]90    ${Boost_FILESYSTEM_LIBRARY}
91    ${Boost_SYSTEM_LIBRARY} # Filesystem dependency
[3196]92    ${Boost_THREAD_LIBRARY}
[3370]93    ${Boost_DATE_TIME_LIBRARY} # Thread dependency
[5781]94    ${CEGUI_LIBRARY}
95    ${CEGUILUA_LIBRARY}
[3196]96    ${LUA_LIBRARIES}
[5781]97    cpptcl_orxonox
98    ogreceguirenderer_orxonox
99    ois_orxonox
[7163]100    tinyxml_orxonox
101    tolua_orxonox
[3196]102    util
103  SOURCE_FILES
104    ${CORE_SRC_FILES}
[1505]105)
Note: See TracBrowser for help on using the repository browser.