Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Merged resource2 branch back to trunk.

IMPORTANT NOTE:
Upon this merge you need to specifically call your data directory "data_extern" when checking it out (when you don't provide a name, it will be just called 'trunk').
The new CMake variable is EXTERNAL_DATA_DIRECTORY. DATA_DIRECTORY now points to the one the source part of the repository.
UPDATE YOUR DATA DIRECTORY AS WELL!!!

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