From 7511545ee20664e3b8b8d3322c0ffe7567c56f7a Mon Sep 17 00:00:00 2001 From: Mia Herkt Date: Wed, 18 Mar 2026 20:37:17 +0100 Subject: [PATCH] build: add missing wayland-client CFLAGS Fixes #276 --- src/wayland/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wayland/CMakeLists.txt b/src/wayland/CMakeLists.txt index 4a67558..196f1e0 100644 --- a/src/wayland/CMakeLists.txt +++ b/src/wayland/CMakeLists.txt @@ -68,6 +68,7 @@ function (wl_proto target name dir) target_include_directories(${target} INTERFACE ${PROTO_BUILD_PATH}) target_link_libraries(${target} wl-proto-${name}-wl Qt6::WaylandClient Qt6::WaylandClientPrivate) qs_pch(${target} SET wayland-protocol) + target_compile_options(wl-proto-${name}-wl PRIVATE ${wayland_CFLAGS}) endfunction() # -----