Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 6038 was 6038, checked in by rgrieder, 14 years ago

Synchronised sandbox with current code trunk. There should be a few bug fixes.

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