Hi all,

attached the CMakeList.txt to fix the issue described in:
http://lists.openscenegraph.org/pipermail/osg-users-openscenegraph.org/2010-January/037792.html

Issue:
osgQtBrowser fails to compile because it can not find the QTCore header
files

Fix:
Add the QT_QTCORE_INCLUDE_DIR to the CMakeList.txt file

Patch:
...\OpenSceneGraphSVN\examples\osgQtBrowser\CMakeLists.txt
change (line 17): INCLUDE_DIRECTORIES(${QT_INCLUDE_DIR} )
to (line 17): INCLUDE_DIRECTORIES(${QT_INCLUDE_DIR}
${QT_QTCORE_INCLUDE_DIR})

It should now compile just fine.

Kind regards,
- Laurence Muller
SET(SOURCES_H
    QGraphicsViewAdapter.h
)

QT4_WRAP_CPP( SOURCES_H_MOC ${SOURCES_H} )

INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_BINARY_DIR} "./")

SET(TARGET_SRC
    ${SOURCES_H_MOC}
    QGraphicsViewAdapter.cpp
    QWebViewImage.cpp
    osgQtBrowser.cpp
)

SET(TARGET_EXTERNAL_LIBRARIES ${QT_QTCORE_LIBRARY_RELEASE} 
${QT_QTGUI_LIBRARY_RELEASE} ${QT_QTOPENGL_LIBRARY_RELEASE} 
${QT_QTWEBKIT_LIBRARY_RELEASE})
INCLUDE_DIRECTORIES(${QT_INCLUDE_DIR} ${QT_QTCORE_INCLUDE_DIR})

SET(TARGET_ADDED_LIBRARIES osgWidget )

#### end var setup  ###
SETUP_EXAMPLE(osgQtBrowser)
_______________________________________________
osg-submissions mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org

Reply via email to