Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 24, 2009, 11:02:42 AM (15 years ago)
Author:
rgrieder
Message:

Reverted trunk again. We might want to find a way to delete these revisions again (x3n's changes are still available as diff in the commit mails).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/CMakeLists.txt

    r5774 r5781  
    2626SET_SOURCE_FILES(ORXONOX_SRC_FILES
    2727  Main.cc
    28   GSRoot.cc
     28
     29  CameraManager.cc
     30  LevelManager.cc
     31  PawnManager.cc
     32  PlayerManager.cc
     33
     34  Level.cc
     35  Radar.cc
     36  Scene.cc
    2937)
     38
     39ADD_SUBDIRECTORY(collisionshapes)
     40ADD_SUBDIRECTORY(controllers)
     41ADD_SUBDIRECTORY(gametypes)
     42ADD_SUBDIRECTORY(graphics)
     43ADD_SUBDIRECTORY(infos)
     44ADD_SUBDIRECTORY(interfaces)
     45ADD_SUBDIRECTORY(items)
     46ADD_SUBDIRECTORY(overlays)
     47ADD_SUBDIRECTORY(pickup)
     48ADD_SUBDIRECTORY(sound)
     49ADD_SUBDIRECTORY(weaponsystem)
     50ADD_SUBDIRECTORY(worldentities)
    3051
    3152ORXONOX_ADD_LIBRARY(orxonox
    3253  FIND_HEADER_FILES
     54  TOLUA_FILES
     55    LevelManager.h
     56    pickup/BaseItem.h
     57    pickup/PickupInventory.h
    3358  DEFINE_SYMBOL
    3459    "ORXONOX_SHARED_BUILD"
     60  PCH_FILE
     61    OrxonoxPrecompiledHeaders.h
    3562  LINK_LIBRARIES
     63    ${Boost_FILESYSTEM_LIBRARY}
     64    ${Boost_SYSTEM_LIBRARY} # Filesystem dependency
     65    ${Boost_THREAD_LIBRARY}
     66    ${Boost_DATE_TIME_LIBRARY} # Thread dependency
     67    ${OGRE_LIBRARY}
     68    ${OPENAL_LIBRARY}
     69    ${ALUT_LIBRARY}
     70    ${VORBISFILE_LIBRARY}
     71    ${VORBIS_LIBRARY}
     72    ${OGG_LIBRARY}
     73    tinyxml++_orxonox
    3674    tolua++_orxonox
     75    bullet_orxonox
    3776    util
    3877    core
     78    network
     79    tools
    3980  SOURCE_FILES ${ORXONOX_SRC_FILES}
    4081)
Note: See TracChangeset for help on using the changeset viewer.