From c119e04947f8e558cc2b8216761c9b2c8105e5f1 Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Tue, 11 Aug 2015 22:49:19 +0300 Subject: [PATCH] fix opengl sample build on Linux (#5067) --- samples/opengl/CMakeLists.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/samples/opengl/CMakeLists.txt b/samples/opengl/CMakeLists.txt index 4bf48925e3..ffad0211fa 100644 --- a/samples/opengl/CMakeLists.txt +++ b/samples/opengl/CMakeLists.txt @@ -1,3 +1,13 @@ +if(UNIX) + find_package(X11 QUIET) + if(NOT X11_FOUND) + message(STATUS "OpenGL samples require development files for libX11") + return() + endif() + include_directories(${X11_INCLUDE_DIR}) + set(SAMPLE_LINKER_DEPS "${X11_LIBRARIES}") +endif() + SET(OPENCV_OPENGL_SAMPLES_REQUIRED_DEPS opencv_core opencv_imgproc opencv_imgcodecs opencv_videoio opencv_highgui) ocv_check_dependencies(${OPENCV_OPENGL_SAMPLES_REQUIRED_DEPS}) @@ -17,7 +27,7 @@ if(BUILD_EXAMPLES AND OCV_DEPENDENCIES_FOUND) set(the_target "example_${project}_${name}") add_executable(${the_target} ${srcs}) - ocv_target_link_libraries(${the_target} ${OPENCV_LINKER_LIBS} ${OPENCV_OPENGL_SAMPLES_REQUIRED_DEPS}) + ocv_target_link_libraries(${the_target} ${OPENCV_LINKER_LIBS} ${OPENCV_OPENGL_SAMPLES_REQUIRED_DEPS} ${SAMPLE_LINKER_DEPS}) set_target_properties(${the_target} PROPERTIES OUTPUT_NAME "${project}-example-${name}"