Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2748


Ignore:
Timestamp:
Mar 4, 2009, 10:48:08 PM (15 years ago)
Author:
rgrieder
Message:
  • Removed very old testing file
  • Removed old testing CMake code. Also removes deprecated options in the CMake Cache.
Location:
code/trunk
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/cmake/BuildConfig.cmake

    r2723 r2748  
    119119################# Test options ##################
    120120
    121 OPTION(TESTING_ENABLE "Enable build tests.")
    122 IF(TESTING_ENABLE)
    123   ENABLE_TESTING()
    124 ENDIF(TESTING_ENABLE)
    125 
    126 OPTION(NETWORK_TESTING_ENABLED "Build network testing tools: i.e. chatclient chatserver and alike.")
    127 OPTION(NETWORKTRAFFIC_TESTING_ENABLED "Build dummyserver4 and dummyclient4.")
    128 
    129121
    130122############# Installation Settings #############
  • code/trunk/src/network/CMakeLists.txt

    r2710 r2748  
    5151
    5252ORXONOX_INSTALL(network)
    53 
    54 # build those parts only on request.
    55 IF(NETWORK_TESTING_ENABLED)
    56   ##### test for gamestate stuff #####
    57   SET(TEST_SRC_FILES
    58     ${NETWORK_SRC_FILES}
    59   )
    60   ADD_EXECUTABLE(networktest ${TEST_SRC_FILES})
    61   TARGET_LINK_LIBRARIES(networktest
    62     ${OGRE_LIBRARY}
    63     network
    64     ${ENET_LIBRARY}
    65     ${ZLIB_LIBRARY}
    66   )
    67   ##### end test for gamestate stuff #####
    68 ENDIF(NETWORK_TESTING_ENABLED)
  • code/trunk/src/orxonox/CMakeLists.txt

    r2710 r2748  
    4545SET(ORXONOX_EXECUTABLE_NAME ${_exec_name} CACHE INTERNAL "")
    4646
    47 IF(NETWORKTRAFFIC_TESTING_ENABLED)
    48   SET(ORXONOXS_SRC_FILES
    49     GraphicsEngine.cc
    50     objects/Camera.cc
    51     CameraManager.cc
    52   )
    53   ADD_LIBRARY(orxonoxs SHARED ${ORXONOXS_SRC_FILES})
    54 ENDIF(NETWORKTRAFFIC_TESTING_ENABLED)
    55 
    5647TARGET_LINK_LIBRARIES(orxonox
    5748  ${OGRE_LIBRARY}
Note: See TracChangeset for help on using the changeset viewer.