When trying to configure OSG 2.9.6, if the system doesn't have QtWebKit
installed cmake will not configure the examples. Making the following
change seems to fix it (at least on my Suse 11.0 box):
IF (QT4_FOUND)
ADD_SUBDIRECTORY(osgQtBrowser)
ENDIF()
changed to:
IF (QT4_FOUND AND QT_USE_WEBKIT)
ADD_SUBDIRECTORY(osgQtBrowser)
ENDIF()
-Ken.
_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org