Changeset 83


Ignore:
Timestamp:
Jul 28, 2010, 8:52:50 AM (14 years ago)
Author:
Torben Dannhauer
Message:

Removed Cluster UDP due to a working UDP implementation in cluster_ENet

Location:
osgVisual
Files:
4 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • osgVisual/CMakeLists.txt

    r65 r83  
    154154
    155155# Module cluster
    156 SET(USE_CLUSTER_UDP OFF CACHE BOOL "Enable to use the UDP Implementation for the cluster interface")
    157156SET(USE_CLUSTER_ASIO_TCP_IOSTREAM OFF CACHE BOOL "Enable to use the Boost ASIO TCP iostream implementation for the cluster interface")
    158157SET(USE_CLUSTER_ENET ON CACHE BOOL "Enable to use the ENet reliable UDP library implementation for the cluster interface")
    159 IF( USE_CLUSTER_UDP   )
    160                 SET(SOURCES
    161                         ${SOURCES}
    162                         include/cluster/dataIO_cluster.h
    163                         include/cluster/dataIO_clusterUDP.h
    164                         include/cluster/dataIO_clusterUDP_Transmission.h
    165                         src/cluster/dataIO_clusterUDP.cpp
    166                         src/cluster/dataIO_clusterUDP_Transmission.cpp
    167                 )
    168                 ADD_DEFINITIONS( "-DUSE_CLUSTER_UDP" )
    169 ENDIF()
    170 
    171158IF( USE_CLUSTER_ASIO_TCP_IOSTREAM )
    172159                SET(SOURCES
     
    218205ENDIF()
    219206
    220 IF(NOT USE_CLUSTER_UDP AND NOT USE_CLUSTER_ASIO_TCP_IOSTREAM AND NOT USE_CLUSTER_ENET)
     207IF(NOT USE_CLUSTER_ASIO_TCP_IOSTREAM AND NOT USE_CLUSTER_ENET)
    221208                SET(SOURCES
    222209                        ${SOURCES}
Note: See TracChangeset for help on using the changeset viewer.