Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ingamemenu/src/libraries/core/CMakeLists.txt @ 6019

Last change on this file since 6019 was 6019, checked in by scheusso, 15 years ago

Added return to Game button to InGameMenu
MainMenu button now requests mainmenu gamestate

  • Property svn:eol-style set to native
File size: 2.5 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  ConfigValueContainer.cc
22  Core.cc
23  DynLib.cc
24  DynLibManager.cc
25  Event.cc
26  Game.cc
27  GameMode.cc
28  GameState.cc
29  GraphicsManager.cc
30  GUIManager.cc
31  Language.cc
32  LuaState.cc
33  ObjectListBase.cc
34  OrxonoxClass.cc
35  Resource.cc
36  ScopedSingletonManager.cc
37  WindowEventListener.cc
38
39  # command
40  CommandEvaluation.cc
41  CommandExecutor.cc
42  CommandLine.cc
43  ConsoleCommand.cc
44  ConsoleCommandCompilation.cc
45  Executor.cc
46
47  # hierarchy
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
66COMPILATION_BEGIN FilesystemCompilation.cc
67  ArgumentCompletionFunctions.cc
68  ConfigFileManager.cc
69  MemoryArchive.cc
70  PathConfig.cc
71COMPILATION_END
72
73  # multithreading
74  ThreadPool.cc
75COMPILATION_BEGIN ThreadCompilation.cc
76  TclThreadManager.cc
77  Thread.cc
78COMPILATION_END
79)
80
81ADD_SUBDIRECTORY(input)
82
83ORXONOX_ADD_LIBRARY(core
84  FIND_HEADER_FILES
85  TOLUA_FILES
86    CommandExecutor.h
87    Game.h
88    Loader.h
89    LuaState.h
90  DEFINE_SYMBOL
91    "CORE_SHARED_BUILD"
92  PCH_FILE
93    CorePrecompiledHeaders.h
94  LINK_LIBRARIES
95    ${OGRE_LIBRARY}
96    ${Boost_FILESYSTEM_LIBRARY}
97    ${Boost_SYSTEM_LIBRARY} # Filesystem dependency
98    ${Boost_THREAD_LIBRARY}
99    ${Boost_DATE_TIME_LIBRARY} # Thread dependency
100    ${CEGUI_LIBRARY}
101    ${CEGUILUA_LIBRARY}
102    ${LUA_LIBRARIES}
103    cpptcl_orxonox
104    ogreceguirenderer_orxonox
105    ois_orxonox
106    tinyxml++_orxonox
107    tolua++_orxonox
108    util
109  SOURCE_FILES
110    ${CORE_SRC_FILES}
111)
Note: See TracBrowser for help on using the repository browser.