Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: sandbox/src/libraries/core/CMakeLists.txt @ 5782

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

Applied changes to the real sandbox this time.

  • Property svn:eol-style set to native
File size: 1.7 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  DynLib.cc
26  DynLibManager.cc
27  Game.cc
28  GameState.cc
29  Language.cc
30  LuaState.cc
31  ObjectListBase.cc
32  OrxonoxClass.cc
33
34  # command
35  CommandLine.cc
36  Executor.cc
37
38  # hierarchy
39  Factory.cc
40  Identifier.cc
41  MetaObjectList.cc
42
43  # level
44  BaseObject.cc
45
46  # multithreading
47  Thread.cc
48  ThreadPool.cc
49)
50
51ORXONOX_ADD_LIBRARY(core
52  FIND_HEADER_FILES
53  TOLUA_FILES
54    LuaState.h
55  DEFINE_SYMBOL
56    "CORE_SHARED_BUILD"
57  PCH_FILE
58    CorePrecompiledHeaders.h
59  LINK_LIBRARIES
60    ${OGRE_LIBRARY}
61    ${Boost_FILESYSTEM_LIBRARY}
62    ${Boost_SYSTEM_LIBRARY} # Filesystem dependency
63    ${Boost_THREAD_LIBRARY}
64    ${Boost_DATE_TIME_LIBRARY} # Thread dependency
65    ${LUA_LIBRARIES}
66    tolua++_orxonox
67    util
68  SOURCE_FILES
69    ${CORE_SRC_FILES}
70)
Note: See TracBrowser for help on using the repository browser.