Changes between Version 18 and Version 19 of OsgVpbBuildEnvLinux
- Timestamp:
- Sep 24, 2011, 9:12:39 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OsgVpbBuildEnvLinux
v18 v19 112 112 svn checkout http://nvidia-texture-tools.googlecode.com/svn/branches/2.0/ nvidia-texture-tools-read-only 113 113 cd 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' 115 115 make 116 116 sudo make install … … 140 140 svn co http://www.openscenegraph.org/svn/osg/OpenSceneGraph/tags/OpenSceneGraph-3.0.0 OpenSceneGraph 141 141 cd 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' 143 143 make -j 8 144 144 make install 145 145 cd .. 146 146 }}} 147 To build OSG in debug mode, edit the configure file and change the build type to Debug, then repea kthe last instructions.147 To build OSG in debug mode, edit the configure file and change the build type to Debug, then repeat the last instructions. 148 148 149 149 * ... or Compile newest OSG from SVN … … 153 153 svn co http://www.openscenegraph.org/svn/osg/OpenSceneGraph/trunk OpenSceneGraph 154 154 cd 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' 156 156 make -j 8 157 157 make install