mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
13 years ago
|
# ----------------------------------------------------------------------------
|
||
|
# Detect 3rd-party GUI libraries
|
||
|
# ----------------------------------------------------------------------------
|
||
|
|
||
|
# --- QT4 ---
|
||
|
ocv_clear_vars(HAVE_QT)
|
||
|
if(WITH_QT)
|
||
|
find_package(Qt4)
|
||
|
if(QT4_FOUND)
|
||
|
set(HAVE_QT TRUE)
|
||
|
add_definitions(-DHAVE_QT) # We need to define the macro this way, using cvconfig.h does not work
|
||
|
endif()
|
||
|
endif()
|
||
|
|
||
|
# --- GTK ---
|
||
|
ocv_clear_vars(HAVE_GTK HAVE_GTHREAD HAVE_GTKGLEXT)
|
||
|
if(WITH_GTK AND NOT HAVE_QT)
|
||
|
CHECK_MODULE(gtk+-2.0 HAVE_GTK)
|
||
|
CHECK_MODULE(gthread-2.0 HAVE_GTHREAD)
|
||
|
if(WITH_OPENGL)
|
||
|
CHECK_MODULE(gtkglext-1.0 HAVE_GTKGLEXT)
|
||
|
endif()
|
||
|
endif()
|
||
|
|
||
|
# --- OpenGl ---
|
||
|
ocv_clear_vars(HAVE_OPENGL HAVE_QT_OPENGL)
|
||
|
if(WITH_OPENGL)
|
||
|
if(WIN32 OR QT_QTOPENGL_FOUND OR HAVE_GTKGLEXT)
|
||
|
find_package (OpenGL QUIET)
|
||
|
if(OPENGL_FOUND)
|
||
|
set(HAVE_OPENGL TRUE)
|
||
|
list(APPEND OPENCV_LINKER_LIBS ${OPENGL_LIBRARIES})
|
||
|
if(QT_QTOPENGL_FOUND)
|
||
|
set(HAVE_QT_OPENGL TRUE)
|
||
|
add_definitions(-DHAVE_QT_OPENGL)
|
||
|
else()
|
||
|
ocv_include_directories(${OPENGL_INCLUDE_DIR})
|
||
|
endif()
|
||
|
endif()
|
||
|
endif()
|
||
|
endif(WITH_OPENGL)
|