6d046e9fa1
The new example, named osgviewerQtContext (because of deriving from GraphicsContext), works fine on Windows XP SP3 and Qt 4.5.0, with 4 widgets in QGridLayout and a popup window and 60Hz frame rate. I haven't tested it on Unix/Linux and Mac OSX yet. So any feedback from these platforms is appreciated. I wish this example be a useful complement to current osgviewerQt and osgviewerQtWidgets ones. :) Some unfinished functionalities: inheritedWindowData, sharedContext, and more tests needed."
16 lines
433 B
CMake
16 lines
433 B
CMake
SET( TARGET_SRC
|
|
GraphicsWindowQt
|
|
GraphicsWindowQt.cpp
|
|
osgviewerQtContext.cpp
|
|
)
|
|
|
|
IF( QT4_FOUND )
|
|
SET(TARGET_EXTERNAL_LIBRARIES ${QT_QTCORE_LIBRARY_RELEASE} ${QT_QTGUI_LIBRARY_RELEASE} ${QT_QTOPENGL_LIBRARY_RELEASE} )
|
|
ADD_DEFINITIONS(-DUSE_QT4)
|
|
ELSE( QT4_FOUND )
|
|
SET(TARGET_EXTERNAL_LIBRARIES ${QT_LIBRARIES} )
|
|
ENDIF( QT4_FOUND )
|
|
|
|
INCLUDE_DIRECTORIES( ${QT_INCLUDE_DIR} )
|
|
SETUP_EXAMPLE( osgviewerQtContext )
|