diff options
author | Joe Donofry <rubberduckie3554@gmail.com> | 2022-01-02 21:15:10 +0000 |
---|---|---|
committer | Joe Donofry <rubberduckie3554@gmail.com> | 2022-01-02 21:15:10 +0000 |
commit | 9033235e9da36bfdb10a83f96c713190f0505ca8 (patch) | |
tree | a61d2ff66e591fce9d6e9296dcd01f54eb2b8785 /CMakeLists.txt | |
parent | Simplify Ripple effect and make it easier to use everywhere (diff) | |
download | nheko-9033235e9da36bfdb10a83f96c713190f0505ca8.tar.xz |
Gstreamer glib event loop for macos and windows
- This ensures that gstreamer bus operations work on macOS and windows, such as enumerating devices.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6a98bc1c..90f906c7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -504,7 +504,7 @@ endif() if (VOIP) include(FindPkgConfig) pkg_check_modules(GSTREAMER REQUIRED IMPORTED_TARGET gstreamer-sdp-1.0>=1.18 gstreamer-webrtc-1.0>=1.18) - if (SCREENSHARE_X11) + if (SCREENSHARE_X11 AND NOT WIN32 AND NOT APPLE) pkg_check_modules(XCB REQUIRED IMPORTED_TARGET xcb xcb-ewmh) endif() endif() |