Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/libraries/core/CMakeLists.txt @ 11787

Last change on this file since 11787 was 11712, checked in by landauf, 6 years ago

icon is not needed in core-library, is already included in orxonox-main (fixes build in Visual Studio 2017 with PCH)

  • Property svn:eol-style set to native
File size: 2.8 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
[8729]21
22#BUILD_UNIT CoreStableBuildUnit.cc
23  ClassTreeMask.cc
[5781]24  Event.cc
[2896]25  Game.cc
[10624]26  GameConfig.cc
[5781]27  GameMode.cc
[1755]28  GameState.cc
[1543]29  Language.cc
[8729]30  Loader.cc
[5695]31  LuaState.cc
[5781]32  Namespace.cc
33  NamespaceNode.cc
34  Template.cc
[10624]35  UpdateListener.cc
[8079]36  ViewportEventListener.cc
37  WindowEventListener.cc
[5781]38  XMLNameListener.cc
[8729]39  XMLPort.cc
40#END_BUILD_UNIT
[1543]41
[8729]42  BaseObject.cc
43  Core.cc
[10624]44  CoreConfig.cc
45  CoreStaticInitializationHandler.cc
[8729]46
47BUILD_UNIT OgreBuildUnit.cc
48  GraphicsManager.cc
49  GUIManager.cc
50  Resource.cc
51END_BUILD_UNIT
52
53BUILD_UNIT FilesystemBuildUnit.cc
[7284]54  command/ArgumentCompletionFunctions.cc
[9667]55  config/ConfigFile.cc
[10624]56  ApplicationPaths.cc
57  ConfigurablePaths.cc
[8729]58END_BUILD_UNIT
[5929]59
[8729]60BUILD_UNIT ThreadBuildUnit.cc
[7284]61  command/TclThreadManager.cc
[3304]62  Thread.cc
[8729]63  ThreadPool.cc
64END_BUILD_UNIT
[1505]65)
[5929]66
[9667]67ADD_SUBDIRECTORY(class)
[7284]68ADD_SUBDIRECTORY(command)
[10624]69ADD_SUBDIRECTORY(commandline)
[9667]70ADD_SUBDIRECTORY(config)
[5781]71ADD_SUBDIRECTORY(input)
[10624]72ADD_SUBDIRECTORY(module)
[9667]73ADD_SUBDIRECTORY(object)
[10624]74ADD_SUBDIRECTORY(singleton)
[1505]75
[3196]76ORXONOX_ADD_LIBRARY(core
77  FIND_HEADER_FILES
78  TOLUA_FILES
[7284]79    command/CommandExecutor.h
[9667]80    config/SettingsConfigFile.h
[10624]81    ApplicationPaths.h
82    ConfigurablePaths.h
[6417]83    Game.h
84    GameMode.h
[8079]85    GraphicsManager.h
[6417]86    GUIManager.h
[5781]87    Loader.h
[5695]88    LuaState.h
[6417]89    input/InputManager.h
90    input/KeyBinder.h
91    input/KeyBinderManager.h
[8858]92    ../util/output/OutputDefinitions.h
[3196]93  PCH_FILE
94    CorePrecompiledHeaders.h
95  LINK_LIBRARIES
96    ${OGRE_LIBRARY}
[3370]97    ${Boost_FILESYSTEM_LIBRARY}
98    ${Boost_SYSTEM_LIBRARY} # Filesystem dependency
[3196]99    ${Boost_THREAD_LIBRARY}
[3370]100    ${Boost_DATE_TIME_LIBRARY} # Thread dependency
[5781]101    ${CEGUI_LIBRARY}
102    ${CEGUILUA_LIBRARY}
[8351]103    ${CEGUI_TOLUA_LIBRARY}
104    ${CEGUI_OGRE_RENDERER_LIBRARY}
105    ${LUA5.1_LIBRARY}
[5781]106    cpptcl_orxonox
107    ois_orxonox
[7163]108    tinyxml_orxonox
[3196]109    util
[8351]110  LINK_LIBS_UNIX
111    dl
112    pthread
[3196]113  SOURCE_FILES
114    ${CORE_SRC_FILES}
[1505]115)
Note: See TracBrowser for help on using the repository browser.