Changes between Version 18 and Version 19 of OsgVpbBuildEnvLinux


Ignore:
Timestamp:
Sep 24, 2011, 9:12:39 PM (13 years ago)
Author:
Torben Dannhauer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OsgVpbBuildEnvLinux

    v18 v19  
    112112svn checkout http://nvidia-texture-tools.googlecode.com/svn/branches/2.0/ nvidia-texture-tools-read-only
    113113cd nvidia-texture-tools-read-only
    114 # Use CMake instead of ./configure to ensure CMake looks for cuda/lib64 instead of cuda/lib. Add CMake variable NVTT_SHARED with the boolean value 'true'.
     114# Use CMake instead of ./configure to ensure CMake looks for cuda/lib64 instead of cuda/lib. Add CMake variable NVTT_SHARED with the boolean value 'true'. Configure CMake variable CMAKE_BUILD_TYPE as 'Release'
    115115make
    116116sudo make install
     
    140140svn co http://www.openscenegraph.org/svn/osg/OpenSceneGraph/tags/OpenSceneGraph-3.0.0 OpenSceneGraph
    141141cd OpenSceneGraph
    142 ./configure
     142# Use CMake instead of ./configure to ensure shared NVTT is used (should be nv*.so and not .a). Configure CMake variable CMAKE_BUILD_TYPE as 'Release'
    143143make -j 8
    144144make install
    145145cd ..
    146146}}}
    147 To build OSG in debug mode, edit the configure file and change the build type to Debug, then repeak the last instructions.
     147To build OSG in debug mode, edit the configure file and change the build type to Debug, then repeat the last instructions.
    148148
    149149 * ... or Compile newest OSG from SVN
     
    153153svn co http://www.openscenegraph.org/svn/osg/OpenSceneGraph/trunk OpenSceneGraph
    154154cd OpenSceneGraph
    155 ./configure
     155# Use CMake instead of ./configure to ensure shared NVTT is used (should be nv*.so and not .a). Configure CMake variable CMAKE_BUILD_TYPE as 'Release'
    156156make -j 8
    157157make install