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.
15 lines
440 B
15 lines
440 B
8 months ago
|
# --- FB ---
|
||
|
set(HAVE_FRAMEBUFFER ON)
|
||
|
if(WITH_FRAMEBUFFER_XVFB)
|
||
|
try_compile(HAVE_FRAMEBUFFER_XVFB
|
||
|
"${CMAKE_CURRENT_BINARY_DIR}"
|
||
|
"${OpenCV_SOURCE_DIR}/cmake/checks/framebuffer.cpp")
|
||
|
if(HAVE_FRAMEBUFFER_XVFB)
|
||
|
message(STATUS "Check virtual framebuffer - done")
|
||
|
else()
|
||
|
message(STATUS
|
||
|
"Check virtual framebuffer - failed\n"
|
||
|
"Please install the xorg-x11-proto-devel or x11proto-dev package\n")
|
||
|
endif()
|
||
|
endif()
|