Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/CMakeLists.txt @ 5745

Last change on this file since 5745 was 5744, checked in by rgrieder, 16 years ago

Visual studio debugger working again (had to move the project modifier file).

  • Property svn:eol-style set to native
File size: 2.0 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(ORXONOX_SRC_FILES
[5693]21  Main.cc
22
[2087]23  CameraManager.cc
24  LevelManager.cc
[2662]25  PawnManager.cc
[2171]26  PlayerManager.cc
[5693]27
[5738]28  Level.cc
29  Radar.cc
30  Scene.cc
[1505]31)
[5738]32
33ADD_SUBDIRECTORY(collisionshapes)
34ADD_SUBDIRECTORY(controllers)
35ADD_SUBDIRECTORY(gametypes)
36ADD_SUBDIRECTORY(graphics)
37ADD_SUBDIRECTORY(infos)
[3196]38ADD_SUBDIRECTORY(interfaces)
[5738]39ADD_SUBDIRECTORY(items)
[5693]40ADD_SUBDIRECTORY(overlays)
[5738]41ADD_SUBDIRECTORY(pickup)
[3196]42ADD_SUBDIRECTORY(sound)
[5738]43ADD_SUBDIRECTORY(weaponsystem)
44ADD_SUBDIRECTORY(worldentities)
[1505]45
[5693]46ORXONOX_ADD_LIBRARY(orxonox
[3196]47  FIND_HEADER_FILES
48  TOLUA_FILES
[3280]49    LevelManager.h
[5738]50    pickup/BaseItem.h
51    pickup/PickupInventory.h
[5693]52  DEFINE_SYMBOL
53    "ORXONOX_SHARED_BUILD"
[3196]54  PCH_FILE
55    OrxonoxPrecompiledHeaders.h
56  LINK_LIBRARIES
[3370]57    ${Boost_FILESYSTEM_LIBRARY}
58    ${Boost_SYSTEM_LIBRARY} # Filesystem dependency
59    ${Boost_THREAD_LIBRARY}
60    ${Boost_DATE_TIME_LIBRARY} # Thread dependency
[3196]61    ${OGRE_LIBRARY}
62    ${OPENAL_LIBRARY}
63    ${ALUT_LIBRARY}
64    ${VORBISFILE_LIBRARY}
65    ${VORBIS_LIBRARY}
66    ${OGG_LIBRARY}
67    tinyxml++_orxonox
68    tolua++_orxonox
69    bullet_orxonox
70    util
71    core
72    network
[5693]73    tools
[3196]74  SOURCE_FILES ${ORXONOX_SRC_FILES}
75)
Note: See TracBrowser for help on using the repository browser.