From 22e580d4c0d8fd99d79622aa22c8cba348493ca6 Mon Sep 17 00:00:00 2001 From: Tony Wasserka Date: Tue, 17 Jun 2025 17:39:57 +0200 Subject: [PATCH] Add include directories for pkg-config dependencies in the profiler build --- profiler/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/profiler/CMakeLists.txt b/profiler/CMakeLists.txt index bd7ddc09..09334dc1 100644 --- a/profiler/CMakeLists.txt +++ b/profiler/CMakeLists.txt @@ -106,6 +106,7 @@ set(LIBS "") if(USE_WAYLAND) pkg_check_modules(WAYLAND REQUIRED egl wayland-egl wayland-cursor xkbcommon) + set(INCLUDES "${INCLUDES};${WAYLAND_INCLUDE_DIRS}") set(LIBS "${LIBS};${WAYLAND_LIBRARIES}") set(PROFILER_FILES ${PROFILER_FILES} src/BackendWayland.cpp