From 23fcea0d33b1a17525ce84b31400d409ccc14b6a Mon Sep 17 00:00:00 2001 From: Amir Hassan Date: Wed, 4 Dec 2024 15:20:15 +0100 Subject: [PATCH] Merge pull request #26563 from kallaballa:wayland_and_xkbcommon_missing_include_dirs Missing include directories needed for wayland-util and xkbcommon #26563 See: #26561 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [x] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake --- modules/highgui/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/highgui/CMakeLists.txt b/modules/highgui/CMakeLists.txt index ab5e5391ec..f0a668e4b5 100644 --- a/modules/highgui/CMakeLists.txt +++ b/modules/highgui/CMakeLists.txt @@ -83,6 +83,7 @@ if(WITH_WAYLAND AND HAVE_WAYLAND) endif() endif() + ocv_module_include_directories(${WAYLAND_CLIENT_INCLUDE_DIRS} ${XKBCOMMON_INCLUDE_DIRS}) elseif(HAVE_QT) set(OPENCV_HIGHGUI_BUILTIN_BACKEND "QT${QT_VERSION_MAJOR}") add_definitions(-DHAVE_QT)