[52] | 1 | ################################################################################################# |
---|
| 2 | # This file allows to configure osgVisual with CMAKE to generate native build solutions. # |
---|
| 3 | # # |
---|
| 4 | # Specify the following environment variables to use osgVisual and this CMAKE script: # |
---|
| 5 | # * OSG_ROOT: Path to your 32 bit (x86) OSG, e.g. D:\OSG\OpenSceneGraph-2.9.8_x86 # |
---|
| 6 | # * OSG_ROOT_X64: Path to your 64 bit (x64) OSG, e.g. D:\OSG\OpenSceneGraph-2.9.8_x64 # |
---|
| 7 | # * OSG: Path to your 32 bit (x86) OSG and 3rdParty binary folder, # |
---|
| 8 | # e.g. %OSG_ROOT%\bin;D:\OSG\3rdParty\bin\x86 # |
---|
| 9 | # * OSG_X64: Path to your 64 bit (x64) OSG and 3rdParty binary folder, # |
---|
| 10 | # e.g. %OSG_ROOT_X64%\bin;D:\OSG\3rdParty\bin\x64 # |
---|
| 11 | # * PATH: Extend with %OSG% or %OSG_X64% to use OSG and osgVisual from command line, # |
---|
| 12 | # e.g. PATH=%PATH%;%OSG% # |
---|
| 13 | # # |
---|
| 14 | # NOTE: On Visual Studio and x64 Arch, CMAKE uses the project settings to specify the # |
---|
[241] | 15 | # correct x64 OSG path, so you can use the 32bit OSG in your system path. # |
---|
[52] | 16 | # # |
---|
| 17 | # # |
---|
| 18 | ################################################################################################# |
---|
| 19 | |
---|
[28] | 20 | cmake_minimum_required(VERSION 2.8) |
---|
| 21 | |
---|
[52] | 22 | |
---|
[28] | 23 | PROJECT(osgVisual) |
---|
| 24 | #SET(CMAKE_MODULE_PATH "${osgVisual_SOURCE_DIR}/../CMakeModules;${CMAKE_MODULE_PATH}") |
---|
| 25 | |
---|
[103] | 26 | # Check Architecture |
---|
[51] | 27 | IF( CMAKE_SIZEOF_VOID_P EQUAL 4 ) |
---|
| 28 | MESSAGE( STATUS "32 bit architecture detected" ) |
---|
| 29 | SET(DESTINATION_ARCH "x86") |
---|
| 30 | ENDIF() |
---|
| 31 | IF( CMAKE_SIZEOF_VOID_P EQUAL 8 ) |
---|
| 32 | MESSAGE( STATUS "64 bit architecture detected" ) |
---|
| 33 | SET(DESTINATION_ARCH "x64") |
---|
| 34 | ENDIF() |
---|
| 35 | |
---|
[52] | 36 | |
---|
[120] | 37 | # Get required packages |
---|
[52] | 38 | IF(DESTINATION_ARCH STREQUAL "x64") |
---|
| 39 | SET(OSG_ROOT_BKP $ENV{OSG_ROOT}) # BACKUP old OSG_ROOT |
---|
| 40 | SET(ENV{OSG_ROOT} $ENV{OSG_ROOT_X64}) # Replace OSGROOT with OSG_ROOT_X64 to force CMAKE to find the correct OSG version (64 bit) |
---|
| 41 | ENDIF () |
---|
| 42 | |
---|
| 43 | SET(OpenSceneGraph_MARK_AS_ADVANCED ON) |
---|
[120] | 44 | FIND_PACKAGE(OpenSceneGraph 2.9.9 REQUIRED osgViewer OpenThreads osgDB osgTerrain osgGA osgText osgSim osgUtil) |
---|
[28] | 45 | FIND_PACKAGE(OpenGL REQUIRED) |
---|
| 46 | |
---|
[103] | 47 | |
---|
[52] | 48 | IF(DESTINATION_ARCH STREQUAL "x64") |
---|
| 49 | SET(ENV{OSG_ROOT} ${OSG_ROOT_BKP}) # Restore old OSG_ROOT |
---|
| 50 | UNSET(OSG_ROOT_BKP) # Delete backup |
---|
| 51 | ENDIF () |
---|
| 52 | |
---|
[120] | 53 | # LIBXML2 |
---|
[181] | 54 | SET(LIBXML2_LIBRARY ../../../OpenSceneGraph/3rdParty_x86_x64/${DESTINATION_ARCH}/lib/libxml2 CACHE FILEPATH "Select the libxml2 library to link osgVisual against. REQUIRED!" ) |
---|
| 55 | SET(LIBXML2_INCLUDE ../../../OpenSceneGraph/3rdParty_x86_x64/${DESTINATION_ARCH}/include CACHE PATH "Select the libxml2 include path to link osgVisual against. REQUIRED!" ) |
---|
[120] | 56 | INCLUDE_DIRECTORIES( ${LIBXML2_INCLUDE} ) |
---|
[52] | 57 | |
---|
[120] | 58 | # Module sky-silverlining |
---|
[28] | 59 | # OPTION( OPTION_VAR "description string" [initial value] ) |
---|
| 60 | IF ( WIN32 ) |
---|
| 61 | |
---|
| 62 | SET(USE_SKY_SILVERLINING ON CACHE BOOL "Enable to use Sundog-soft's Silverlining SDK for sky & weather") |
---|
| 63 | IF(USE_SKY_SILVERLINING ) |
---|
[241] | 64 | |
---|
| 65 | SET(checkSL $ENV{SILVERLINING_PATH}) |
---|
| 66 | IF(NOT checkSL) |
---|
[244] | 67 | MESSAGE( "You have activated SilverLining [SL] in CMake, but the SL installation path could not be found! Please deactivate SL or setup it's pathes in CMake manually!" ) |
---|
[242] | 68 | ENDIF() |
---|
[241] | 69 | |
---|
| 70 | |
---|
[28] | 71 | SET(SOURCES |
---|
| 72 | ${SOURCES} |
---|
| 73 | include/sky_Silverlining/skySilverLining_AtmosphereReference.h |
---|
[101] | 74 | include/sky_Silverlining/skySilverLining_cloudLayerSlot.h |
---|
[28] | 75 | include/sky_Silverlining/skySilverLining_cloudsDrawable.h |
---|
| 76 | include/sky_Silverlining/skySilverLining_ProjectionMatrixCallback.h |
---|
| 77 | include/sky_Silverlining/skySilverLining_skyDrawable.h |
---|
| 78 | include/sky_Silverlining/visual_skySilverLining.h |
---|
| 79 | src/sky_Silverlining/skySilverLining_cloudsDrawable.cpp |
---|
| 80 | src/sky_Silverlining/skySilverLining_skyDrawable.cpp |
---|
| 81 | src/sky_Silverlining/visual_skySilverLining.cpp |
---|
| 82 | ) |
---|
| 83 | |
---|
[51] | 84 | IF (DESTINATION_ARCH STREQUAL "x86") |
---|
| 85 | SET(SILVERLINING_ARCH "win32") |
---|
| 86 | ELSEIF ( DESTINATION_ARCH STREQUAL "x64" ) |
---|
| 87 | SET(SILVERLINING_ARCH "x64") |
---|
| 88 | ENDIF () |
---|
| 89 | SET(SILVERLINING_LIBRARY_RELEASE $ENV{SILVERLINING_PATH}\\lib\\vc9\\${SILVERLINING_ARCH}\\SilverLining-MT-DLL.lib CACHE FILEPATH "Select the release library of Sundog-Soft's Silverlining SDK to link against." ) |
---|
| 90 | SET(SILVERLINING_LIBRARY_DEBUG $ENV{SILVERLINING_PATH}\\lib\\vc9\\${SILVERLINING_ARCH}\\SilverLining-MTD-DLL.lib CACHE FILEPATH "Select the debug library of Sundog-Soft's Silverlining SDK to link against." ) |
---|
[28] | 91 | SET(SILVERLINING_INCLUDE_DIR "$ENV{SILVERLINING_PATH}\\Public Headers" CACHE PATH "Enter the path to the the public Include directory of Sundog-Soft's Silverlining SDK" ) |
---|
| 92 | SET(SILVERLINING_LICENSEE "Your user name" CACHE STRING "Enter your Silverlining licensee name. If you license available, osgVisual will work with silverlining as 5 minute demo with the default value." ) |
---|
| 93 | SET(SILVERLINING_LICENSE "Your license code" CACHE STRING "Enter your Silverlining license key. If you license available, osgVisual will work with silverlining as 5 minute demo with the default value." ) |
---|
| 94 | INCLUDE_DIRECTORIES(${SILVERLINING_INCLUDE_DIR} include/sky_Silverlining) |
---|
| 95 | ADD_DEFINITIONS( "-DUSE_SKY_SILVERLINING" ) |
---|
| 96 | ADD_DEFINITIONS( "-DSILVERLINING_LICENSEE=\"${SILVERLINING_LICENSEE}\"" ) |
---|
| 97 | ADD_DEFINITIONS( "-DSILVERLINING_LICENSE=\"${SILVERLINING_LICENSE}\"" ) |
---|
| 98 | |
---|
| 99 | ELSE(USE_SKY_SILVERLINING) |
---|
| 100 | UNSET(SILVERLINING_LIBRARY_RELEASE CACHE) |
---|
| 101 | UNSET(SILVERLINING_LIBRARY_DEBUG CACHE) |
---|
| 102 | UNSET(SILVERLINING_INCLUDE_DIR CACHE) |
---|
| 103 | UNSET(SILVERLINING_LICENSEE) |
---|
| 104 | UNSET(SILVERLINING_LICENSE) |
---|
| 105 | ENDIF(USE_SKY_SILVERLINING) |
---|
| 106 | ENDIF(WIN32) |
---|
[100] | 107 | IF(UNIX) |
---|
[88] | 108 | SET(USE_SKY_SILVERLINING ON CACHE BOOL "Enable to use Sundog-soft's Silverlining SDK for sky & weather") |
---|
| 109 | IF(USE_SKY_SILVERLINING ) |
---|
| 110 | SET(SOURCES |
---|
| 111 | ${SOURCES} |
---|
| 112 | include/sky_Silverlining/skySilverLining_AtmosphereReference.h |
---|
[102] | 113 | include/sky_Silverlining/skySilverLining_cloudLayerSlot.h |
---|
[88] | 114 | include/sky_Silverlining/skySilverLining_cloudsDrawable.h |
---|
| 115 | include/sky_Silverlining/skySilverLining_ProjectionMatrixCallback.h |
---|
| 116 | include/sky_Silverlining/skySilverLining_skyDrawable.h |
---|
| 117 | include/sky_Silverlining/visual_skySilverLining.h |
---|
| 118 | src/sky_Silverlining/skySilverLining_cloudsDrawable.cpp |
---|
| 119 | src/sky_Silverlining/skySilverLining_skyDrawable.cpp |
---|
| 120 | src/sky_Silverlining/visual_skySilverLining.cpp |
---|
| 121 | ) |
---|
| 122 | |
---|
| 123 | IF (DESTINATION_ARCH STREQUAL "x86") |
---|
| 124 | SET(SILVERLINING_ARCH "win32") |
---|
| 125 | ELSEIF ( DESTINATION_ARCH STREQUAL "x64" ) |
---|
| 126 | SET(SILVERLINING_ARCH "x64") |
---|
| 127 | ENDIF () |
---|
| 128 | SET(SILVERLINING_LIBRARY_RELEASE $ENV{SILVERLINING_PATH}\\lib\\vc9\\${SILVERLINING_ARCH}\\SilverLining-MT-DLL.lib CACHE FILEPATH "Select the release library of Sundog-Soft's Silverlining SDK to link against." ) |
---|
| 129 | SET(SILVERLINING_LIBRARY_DEBUG $ENV{SILVERLINING_PATH}\\lib\\vc9\\${SILVERLINING_ARCH}\\SilverLining-MTD-DLL.lib CACHE FILEPATH "Select the debug library of Sundog-Soft's Silverlining SDK to link against." ) |
---|
| 130 | SET(SILVERLINING_INCLUDE_DIR "$ENV{SILVERLINING_PATH}\\Public Headers" CACHE PATH "Enter the path to the the public Include directory of Sundog-Soft's Silverlining SDK" ) |
---|
| 131 | SET(SILVERLINING_LICENSEE "Your user name" CACHE STRING "Enter your Silverlining licensee name. If you license available, osgVisual will work with silverlining as 5 minute demo with the default value." ) |
---|
| 132 | SET(SILVERLINING_LICENSE "Your license code" CACHE STRING "Enter your Silverlining license key. If you license available, osgVisual will work with silverlining as 5 minute demo with the default value." ) |
---|
[104] | 133 | INCLUDE_DIRECTORIES(${SILVERLINING_INCLUDE_DIR} "include/sky_Silverlining" ) |
---|
[88] | 134 | ADD_DEFINITIONS( "-DUSE_SKY_SILVERLINING" ) |
---|
| 135 | ADD_DEFINITIONS( "-DSILVERLINING_LICENSEE=\"${SILVERLINING_LICENSEE}\"" ) |
---|
| 136 | ADD_DEFINITIONS( "-DSILVERLINING_LICENSE=\"${SILVERLINING_LICENSE}\"" ) |
---|
| 137 | |
---|
| 138 | ELSE(USE_SKY_SILVERLINING) |
---|
| 139 | UNSET(SILVERLINING_LIBRARY_RELEASE CACHE) |
---|
| 140 | UNSET(SILVERLINING_LIBRARY_DEBUG CACHE) |
---|
| 141 | UNSET(SILVERLINING_INCLUDE_DIR CACHE) |
---|
| 142 | UNSET(SILVERLINING_LICENSEE) |
---|
| 143 | UNSET(SILVERLINING_LICENSE) |
---|
| 144 | ENDIF(USE_SKY_SILVERLINING) |
---|
| 145 | ENDIF() |
---|
[28] | 146 | |
---|
| 147 | # Module distortion |
---|
| 148 | SET(USE_DISTORTION OFF CACHE BOOL "Enable to use distortion with Projection Designer's distortion maps") |
---|
| 149 | IF(USE_DISTORTION) |
---|
| 150 | SET(SOURCES |
---|
| 151 | ${SOURCES} |
---|
| 152 | include/distortion/visual_distortion.h |
---|
| 153 | src/distortion/visual_distortion.cpp |
---|
| 154 | ) |
---|
| 155 | INCLUDE_DIRECTORIES(include/distortion) |
---|
| 156 | ADD_DEFINITIONS( "-DUSE_DISTORTION" ) |
---|
| 157 | ENDIF(USE_DISTORTION) |
---|
| 158 | |
---|
| 159 | |
---|
| 160 | # Module Vista2D - Only available under Win32 |
---|
| 161 | if( WIN32 ) |
---|
| 162 | SET(USE_VISTA2D OFF CACHE BOOL "Enable to use Vista2D by Wetzel Technology") |
---|
| 163 | IF( USE_VISTA2D ) |
---|
| 164 | INCLUDE_DIRECTORIES( include/vista2D ) |
---|
| 165 | SET(SOURCES |
---|
| 166 | ${SOURCES} |
---|
| 167 | include/vista2D/visual_vista2D.h |
---|
| 168 | src/vista2D/visual_vista2D.cpp |
---|
| 169 | ) |
---|
| 170 | SET(VISTA2D_INCLUDE_DIR . CACHE PATH "Select the INCLUDE directory path for Vista2D by Wetzel Technology." ) |
---|
| 171 | SET(VISTA2D_LIBRARY_DEBUG . CACHE FILEPATH "Select debug LIBRARY path for linking against Vista2D by Wetzel Technology." ) |
---|
| 172 | SET(VISTA2D_LIBRARY_RELEASE . CACHE FILEPATH "Select release LIBRARY path for linking against Vista2D by Wetzel Technology." ) |
---|
| 173 | INCLUDE_DIRECTORIES(${VISTA2D_INCLUDE_DIR}) |
---|
| 174 | ADD_DEFINITIONS( "-DUSE_VISTA2D" ) |
---|
| 175 | ELSE(USE_VISTA2D) |
---|
| 176 | UNSET(VISTA2D_INCLUDE_DIR CACHE) |
---|
| 177 | UNSET(VISTA2D_LIBRARY_DEBUG CACHE) |
---|
| 178 | UNSET(VISTA2D_LIBRARY_RELEASE CACHE) |
---|
| 179 | ENDIF(USE_VISTA2D) |
---|
| 180 | ENDIF(WIN32) |
---|
| 181 | |
---|
| 182 | |
---|
| 183 | # Module Spacenavigator manipulator - ONLY under WIN32 |
---|
| 184 | if( WIN32 ) |
---|
| 185 | # No header or linking required, because WIN32 COM interface used. |
---|
| 186 | SET(USE_SPACEMOUSE ON CACHE BOOL "Enable to use camera manipulator based on Spacenavigator by 3DConnexion") |
---|
| 187 | IF( USE_SPACEMOUSE ) |
---|
| 188 | SET(SOURCES |
---|
| 189 | ${SOURCES} |
---|
| 190 | include/manip_Spacemouse/manip_spaceMouse.h |
---|
| 191 | include/manip_Spacemouse/manip_freeSpaceMouse.h |
---|
| 192 | include/manip_Spacemouse/manip_nodeTrackerSpaceMouse.h |
---|
| 193 | src/manip_Spacemouse/manip_spaceMouse.cpp |
---|
| 194 | src/manip_Spacemouse/manip_freeSpaceMouse.cpp |
---|
| 195 | src/manip_Spacemouse/manip_nodeTrackerSpaceMouse.cpp |
---|
| 196 | ) |
---|
| 197 | INCLUDE_DIRECTORIES(include/manip_Spacemouse) |
---|
| 198 | ADD_DEFINITIONS( "-DUSE_SPACENAVIGATOR" ) |
---|
| 199 | ENDIF(USE_SPACEMOUSE) |
---|
| 200 | ENDIF(WIN32) |
---|
| 201 | |
---|
| 202 | |
---|
| 203 | # Module cluster |
---|
[183] | 204 | SET(SOURCES |
---|
| 205 | ${SOURCES} |
---|
| 206 | include/cluster/dataIO_cluster.h |
---|
| 207 | include/cluster/dataIO_clusterDummy.h |
---|
| 208 | src/cluster/dataIO_clusterDummy.cpp |
---|
| 209 | ) |
---|
[65] | 210 | SET(USE_CLUSTER_ASIO_TCP_IOSTREAM OFF CACHE BOOL "Enable to use the Boost ASIO TCP iostream implementation for the cluster interface") |
---|
| 211 | SET(USE_CLUSTER_ENET ON CACHE BOOL "Enable to use the ENet reliable UDP library implementation for the cluster interface") |
---|
[58] | 212 | IF( USE_CLUSTER_ASIO_TCP_IOSTREAM ) |
---|
[28] | 213 | SET(SOURCES |
---|
| 214 | ${SOURCES} |
---|
[58] | 215 | include/cluster/dataIO_clusterAsioTcpIostream.h |
---|
| 216 | src/cluster/dataIO_clusterAsioTcpIostream.cpp |
---|
| 217 | ) |
---|
| 218 | ADD_DEFINITIONS( "-DUSE_CLUSTER_ASIO_TCP_IOSTREAM" ) |
---|
[60] | 219 | ADD_DEFINITIONS( "-D_WIN32_WINNT=0x0501" ) |
---|
[181] | 220 | SET(BOOST_LIBRARY_PATH "../../../3rdParty_x86_x64/lib/${DESTINATION_ARCH}/" CACHE PATH "Select the library folder of Boost libraries to link against." ) |
---|
| 221 | SET(BOOST_INCLUDE_DIR "../../../3rdParty_x86_x64/include/boost-1.43.0/" CACHE PATH "Enter the path to the the include directory of Boost" ) |
---|
[60] | 222 | INCLUDE_DIRECTORIES(${BOOST_INCLUDE_DIR}) |
---|
| 223 | LINK_DIRECTORIES(${BOOST_LIBRARY_PATH}) |
---|
[58] | 224 | ELSE() |
---|
[60] | 225 | UNSET(BOOST_LIBRARY_PATH CACHE) |
---|
[58] | 226 | UNSET(BOOST_ASIO_INCLUDE_DIR CACHE) |
---|
| 227 | ENDIF() |
---|
| 228 | |
---|
[65] | 229 | IF( USE_CLUSTER_ENET ) |
---|
[58] | 230 | SET(SOURCES |
---|
| 231 | ${SOURCES} |
---|
[65] | 232 | include/cluster/dataIO_clusterENet.h |
---|
| 233 | src/cluster/dataIO_clusterENet.cpp |
---|
| 234 | include/cluster/dataIO_clusterENet_implementation.h |
---|
| 235 | src/cluster/dataIO_clusterENet_implementation.cpp |
---|
| 236 | src/cluster/enet/callbacks.c |
---|
| 237 | src/cluster/enet/compress.c |
---|
| 238 | src/cluster/enet/host.c |
---|
| 239 | src/cluster/enet/list.c |
---|
| 240 | src/cluster/enet/packet.c |
---|
| 241 | src/cluster/enet/peer.c |
---|
| 242 | src/cluster/enet/protocol.c |
---|
| 243 | src/cluster/enet/unix.c |
---|
| 244 | src/cluster/enet/win32.c |
---|
| 245 | include/cluster/enet/callbacks.h |
---|
| 246 | include/cluster/enet/enet.h |
---|
| 247 | include/cluster/enet/list.h |
---|
| 248 | include/cluster/enet/protocol.h |
---|
| 249 | include/cluster/enet/time.h |
---|
| 250 | include/cluster/enet/types.h |
---|
| 251 | include/cluster/enet/unix.h |
---|
| 252 | include/cluster/enet/utility.h |
---|
| 253 | include/cluster/enet/win32.h |
---|
| 254 | ) |
---|
[183] | 255 | ADD_DEFINITIONS( "-DUSE_CLUSTER_ENET" ) |
---|
[65] | 256 | ENDIF() |
---|
| 257 | |
---|
[28] | 258 | |
---|
| 259 | |
---|
[183] | 260 | |
---|
[28] | 261 | # Module extLink |
---|
| 262 | SET(SOURCES |
---|
| 263 | ${SOURCES} |
---|
[183] | 264 | include/extLink/dataIO_extLinkDummy.h |
---|
| 265 | src/extLink/dataIO_extLinkDummy.cpp |
---|
[28] | 266 | include/extLink/dataIO_extLink.h |
---|
| 267 | include/extLink/manip_extLink.h |
---|
| 268 | src/extLink/manip_extLink.cpp |
---|
| 269 | ) |
---|
| 270 | IF ( WIN32 ) |
---|
| 271 | SET(USE_EXTLINK_VCL ON CACHE BOOL "Enable to use the VCL Implementation for the externalLink interface") |
---|
| 272 | IF( USE_EXTLINK_VCL ) |
---|
[181] | 273 | SET(EXTLINK_VCL_INCLUDE_DIR ../../VCL_1.0.3.4/source/include/VCL CACHE PATH "Select the INCLUDE directory path for extLink VCL Implementation." ) |
---|
[28] | 274 | SET(SOURCES |
---|
| 275 | ${SOURCES} |
---|
| 276 | include/extLink/dataIO_extLinkVCL.h |
---|
| 277 | src/extLink/dataIO_extLinkVCL.cpp |
---|
| 278 | ) |
---|
| 279 | INCLUDE_DIRECTORIES(${EXTLINK_VCL_INCLUDE_DIR}) |
---|
| 280 | ADD_DEFINITIONS( "-DUSE_EXTLINK_VCL" ) |
---|
[51] | 281 | #Linking: VCL uses #pragma to link, no need for linking configuration in CMAKE |
---|
[28] | 282 | ELSE(USE_EXTLINK_VCL) |
---|
| 283 | UNSET(EXTLINK_VCL_INCLUDE_DIR CACHE) |
---|
| 284 | ENDIF(USE_EXTLINK_VCL) |
---|
| 285 | ELSE(WIN32) |
---|
| 286 | UNSET(EXTLINK_VCL_INCLUDE_DIR CACHE) |
---|
[183] | 287 | |
---|
| 288 | |
---|
[28] | 289 | ENDIF(WIN32) |
---|
| 290 | |
---|
| 291 | |
---|
| 292 | |
---|
| 293 | # Set core sources |
---|
| 294 | SET(SOURCES |
---|
| 295 | ${SOURCES} |
---|
| 296 | # Core |
---|
| 297 | include/core/visual_core.h |
---|
| 298 | src/core/visual_core.cpp |
---|
| 299 | src/core/osgVisual.cpp |
---|
[232] | 300 | include/core/core_manipulator.h |
---|
[231] | 301 | src/core/core_manipulator.cpp |
---|
[86] | 302 | # Memory Leak debugging |
---|
| 303 | include/core/leakDetection.h |
---|
[28] | 304 | # Util |
---|
| 305 | include/util/visual_util.h |
---|
| 306 | src/util/visual_util.cpp |
---|
| 307 | # Draw 2D |
---|
| 308 | include/draw2D/visual_draw2D.h |
---|
| 309 | src/draw2D/visual_draw2D.cpp |
---|
| 310 | # Debug HUD |
---|
| 311 | include/draw2D/visual_debug_hud.h |
---|
| 312 | src/draw2D/visual_debug_hud.cpp |
---|
| 313 | # Example HUD |
---|
| 314 | include/draw2D/visual_hud.h |
---|
| 315 | src/draw2D/visual_hud.cpp |
---|
| 316 | # Draw 3D |
---|
| 317 | include/draw3D/visual_draw3D.h |
---|
| 318 | src/draw3D/visual_draw3D.cpp |
---|
| 319 | # Object Mounted Manipulator |
---|
| 320 | include/manip_ObjectMounted/manip_objectMounted.h |
---|
| 321 | src/manip_ObjectMounted/manip_objectMounted.cpp |
---|
| 322 | # Objects |
---|
| 323 | include/object/visual_object.h |
---|
| 324 | include/object/object_updater.h |
---|
| 325 | src/object/visual_object.cpp |
---|
| 326 | src/object/object_updater.cpp |
---|
| 327 | # DataIO |
---|
| 328 | include/dataIO/visual_dataIO.h |
---|
| 329 | include/dataIO/dataIO_transportContainer.h |
---|
| 330 | include/dataIO/dataIO_slot.h |
---|
| 331 | include/dataIO/dataIO_executer.h |
---|
| 332 | src/dataIO/visual_dataIO.cpp |
---|
| 333 | src/dataIO/dataIO_transportContainer.cpp |
---|
| 334 | src/dataIO/dataIO_slot.cpp |
---|
| 335 | src/dataIO/dataIO_executer.cpp |
---|
| 336 | ) |
---|
| 337 | |
---|
[60] | 338 | INCLUDE_DIRECTORIES(include/core include/util include/draw2D include/draw3D include/object include/manip_ObjectMounted) |
---|
[28] | 339 | INCLUDE_DIRECTORIES(include/dataIO include/cluster include/extLink ${OPENSCENEGRAPH_INCLUDE_DIRS} .) |
---|
| 340 | |
---|
| 341 | |
---|
| 342 | # Executable Output |
---|
[106] | 343 | SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin) |
---|
[28] | 344 | ADD_EXECUTABLE(osgVisual ${SOURCES}) |
---|
| 345 | |
---|
| 346 | |
---|
| 347 | # Linking |
---|
[120] | 348 | TARGET_LINK_LIBRARIES(osgVisual ${OPENSCENEGRAPH_LIBRARIES} ${OPENGL_LIBRARIES} ${LIBXML2_LIBRARY}) |
---|
[100] | 349 | |
---|
| 350 | |
---|
[28] | 351 | IF(USE_SKY_SILVERLINING ) |
---|
[103] | 352 | IF(WIN32) |
---|
| 353 | TARGET_LINK_LIBRARIES(osgVisual "winmm.lib") |
---|
| 354 | ENDIF(WIN32) |
---|
| 355 | TARGET_LINK_LIBRARIES(osgVisual debug ${SILVERLINING_LIBRARY_DEBUG} optimized ${SILVERLINING_LIBRARY_RELEASE}) |
---|
[28] | 356 | ENDIF(USE_SKY_SILVERLINING) |
---|
| 357 | |
---|
| 358 | IF(USE_VISTA2D) |
---|
| 359 | TARGET_LINK_LIBRARIES(osgVisual debug ${VISTA2D_LIBRARY_DEBUG} optimized ${VISTA2D_LIBRARY_RELEASE}) |
---|
| 360 | ENDIF(USE_VISTA2D) |
---|
| 361 | |
---|
[104] | 362 | IF(USE_CLUSTER_ENET AND WIN32) |
---|
[65] | 363 | TARGET_LINK_LIBRARIES(osgVisual "winmm.lib" "ws2_32.lib" ) |
---|
[104] | 364 | ENDIF(USE_CLUSTER_ENET AND WIN32) |
---|
[28] | 365 | |
---|
| 366 | # CMAKE Fix for VS to not prepend build type to path. |
---|
[105] | 367 | IF(MSVC) |
---|
| 368 | SET_TARGET_PROPERTIES(osgVisual PROPERTIES PREFIX "../") |
---|
| 369 | ENDIF(MSVC) |
---|
[28] | 370 | SET_TARGET_PROPERTIES( osgVisual PROPERTIES DEBUG_POSTFIX d ) |
---|
| 371 | |
---|
[124] | 372 | # Adding definitions to disable multicore compiling |
---|
| 373 | IF(MSVC) |
---|
| 374 | SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP1") |
---|
| 375 | ENDIF(MSVC) |
---|
[28] | 376 | |
---|
| 377 | # Generating vcproj file, if MSVC to preset debugging parameter - based on http://stackoverflow.com/questions/1005901/how-to-set-path-environment-variable-using-cmake-and-visual-studio-to-run-test |
---|
| 378 | IF (MSVC) |
---|
| 379 | # Set up a default .user file that contains the debugging setup |
---|
| 380 | ## Find user and system name |
---|
| 381 | SET(SYSTEM_NAME $ENV{USERDOMAIN} CACHE STRING "Build System Name") |
---|
| 382 | SET(USER_NAME $ENV{USERNAME} CACHE STRING "Build System UserName") |
---|
| 383 | SET(USERFILE_COMMAND_DEBUG "$(TargetPath)" CACHE STRING "Command to execute on debugging (VS Project settings)" ) |
---|
| 384 | SET(USERFILE_WORKING_DIRECTORY_DEBUG "bin" CACHE STRING "Working directory on debugging (VS Project settings)" ) |
---|
[199] | 385 | SET(USERFILE_COMMAND_ARGUMENTS_DEBUG " --window 100 100 800 600 --config osgVisualConfig.xml" CACHE STRING "Command arguments (VS Project settings)" ) |
---|
[28] | 386 | SET(USERFILE_REMOTE_MACHINE_DEBUG ${USER_NAME} CACHE STRING "Remote Debugging Machine (VS Project settings)") |
---|
[51] | 387 | IF (DESTINATION_ARCH STREQUAL "x64") |
---|
| 388 | SET(USERFILE_ENVIRONMENT "PATH=%OSG_X64%;%PATH%" CACHE STRING "Environment Variables that VS should merge on thy fly with system environment to run osgVisual (VS Project settings)") |
---|
| 389 | ENDIF () |
---|
[28] | 390 | |
---|
[51] | 391 | |
---|
[28] | 392 | # Only do this if one doesn't already exist |
---|
| 393 | SET (USER_FILE ${PROJECT_NAME}.vcproj.${SYSTEM_NAME}.${USER_NAME}.user) |
---|
| 394 | IF (NOT EXISTS "${USER_FILE}") |
---|
| 395 | message (STATUS "Creating ${USER_FILE} with default debug settings") |
---|
| 396 | # These are the configuration variables |
---|
| 397 | IF (CMAKE_GENERATOR MATCHES "Win64") |
---|
| 398 | SET (USERFILE_PLATFORM "x64") |
---|
| 399 | ELSE () |
---|
| 400 | SET (USERFILE_PLATFORM "Win32") |
---|
| 401 | ENDIF () |
---|
| 402 | |
---|
| 403 | # Configure the template file |
---|
| 404 | # MSC_VER 1300: MSC 13.0, VC 7.0, VS 2002 |
---|
| 405 | # MSC_VER 1310: MSC 13.1, VC 7.1, VS 2003 |
---|
| 406 | # MSC_VER 1400: MSC 14.0, VC 8.0, VS 2005 |
---|
| 407 | # MSC_VER 1500: MSC 15.0, VC 9.0, VS 2008 |
---|
| 408 | # MSC_VER 1600: MSC ??.0, VC 10.0, VS 2010 |
---|
| 409 | IF (MSVC_VERSION EQUAL 1400) |
---|
| 410 | CONFIGURE_FILE(VC80.vcproj.user.template ${USER_FILE} @ONLY) |
---|
| 411 | ENDIF() |
---|
| 412 | IF (MSVC_VERSION EQUAL 1500) |
---|
| 413 | CONFIGURE_FILE(VC90.vcproj.user.template ${USER_FILE} @ONLY) |
---|
| 414 | ENDIF() |
---|
| 415 | ELSE() |
---|
| 416 | message (STATUS "Userfile ${USER_FILE} already exist: Skipping") |
---|
| 417 | ENDIF() |
---|
| 418 | ENDIF() |
---|
| 419 | |
---|
| 420 | |
---|