From 2aacea50265e6597e934338c05cd097dad21e782 Mon Sep 17 00:00:00 2001 From: Ismael Asensio Date: Sat, 4 Sep 2021 04:24:07 +0200 Subject: [PATCH] Set a minimum version check for pipewire Fixes compilation on systems with a lesser version than required The minimum version is set to 0.3.29 as indicated in https://invent.kde.org/plasma/kwin/-/merge_requests/1210 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 37d9cbfad4..c0aa33be75 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -393,7 +393,7 @@ add_feature_info("SCHED_RESET_ON_FORK" "Required for running kwin_wayland with real-time scheduling") -pkg_check_modules(PipeWire IMPORTED_TARGET libpipewire-0.3) +pkg_check_modules(PipeWire IMPORTED_TARGET libpipewire-0.3>=0.3.29) add_feature_info(PipeWire PipeWire_FOUND "Required for Wayland screencasting") ########### global ###############