Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Merged all remaining revisions from core4 back to the trunk.

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