From Paul Obermeier, "Please find enclosed the following 2 bug fixes:
File osgShadow/Version.cpp, Line 25:
const char* osgShaodowGetLibraryName()
should be:
const char* osgShadowGetLibraryName()
File CMakeModules/OsgMacroUtils.cmake, Line 224:
SET_TARGET_PROPERTIES(${TARGET_TARGETNAME} PROPERTIES DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX})
should be:
SET_TARGET_PROPERTIES(${TARGET_TARGETNAME} PROPERTIES DEBUG_POSTFIX "${CMAKE_DEBUG_POSTFIX}")
Otherwise setting CMAKE_DEBUG_POSTFIX to an empty string instead of "d" in
the main CMakeLists.txt does not work under Linux.
"
This commit is contained in:
@@ -22,7 +22,7 @@ const char* osgShadowGetVersion()
|
||||
}
|
||||
|
||||
|
||||
const char* osgShaodowGetLibraryName()
|
||||
const char* osgShadowGetLibraryName()
|
||||
{
|
||||
return "OpenSceneGraph Shadow Library";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user