- OsgMacroUtils.cmake, SETUP_LINK_LIBRARIES macro : allow linking with debug/release external libraries - osgQt/CMakeLists.txt : fix the linking to Qt librairies + linking to debug Qt librairies if found - examples/ qt examples : linking to debug Qt librairies if found"
12 lines
319 B
CMake
12 lines
319 B
CMake
SET(TARGET_SRC
|
|
osgQtBrowser.cpp
|
|
)
|
|
|
|
SET(TARGET_EXTERNAL_LIBRARIES ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTOPENGL_LIBRARY} ${QT_QTWEBKIT_LIBRARY})
|
|
INCLUDE_DIRECTORIES(${QT_INCLUDE_DIR} ${QT_QTCORE_INCLUDE_DIR})
|
|
|
|
SET(TARGET_ADDED_LIBRARIES osgWidget osgQt)
|
|
|
|
#### end var setup ###
|
|
SETUP_EXAMPLE(osgQtBrowser)
|