Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/resource2/src/core/CMakeLists.txt @ 5768

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

Experimental support for OGRE v1.6 "Shoggoth".
I had to write a little script that removes all the "particle_system" keywords from the particle scripts. But since we can't write to the media folder and creating unique temporary folders is quite tedious, I derived from Ogre::Archive and created a little MemoryArchive that accepts those new particle scripts and feeds them back to the Ogre::ResourceGroupManager.
Also adjusted all particle scripts for the new script compiler (i.e. just added "particle_system" everywhere).

Note: It seems that overlays don't work anymore on Windows, compiling with MinGW.

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