From 3a7b44d038c0926ab69d7908426bf12bd2b72f84 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 23 Aug 2020 17:38:43 +0400 Subject: [PATCH] Enable custom webrtc build on all platforms. --- variables.cmake | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/variables.cmake b/variables.cmake index 92141bc..04a18bd 100644 --- a/variables.cmake +++ b/variables.cmake @@ -26,14 +26,9 @@ if (DESKTOP_APP_SPECIAL_TARGET STREQUAL "" set(disable_autoupdate 1) endif() -set(webrtc_not_supported 0) -if (LINUX AND CMAKE_SIZEOF_VOID_P EQUAL 4) - set(webrtc_not_supported 1) -endif() - option(DESKTOP_APP_LOTTIE_USE_CACHE "Use caching in lottie animations." ON) option(DESKTOP_APP_DISABLE_DBUS_INTEGRATION "Disable all code for D-Bus integration (Linux only)." OFF) -option(DESKTOP_APP_DISABLE_WEBRTC_INTEGRATION "Disable all code for WebRTC integration." ${webrtc_not_supported}) +option(DESKTOP_APP_DISABLE_WEBRTC_INTEGRATION "Disable all code for WebRTC integration." OFF) option(DESKTOP_APP_USE_GLIBC_WRAPS "Use wraps for new GLIBC features." ${linux_special_target}) option(DESKTOP_APP_USE_PACKAGED "Find libraries using CMake instead of exact paths." ${no_special_target}) option(DESKTOP_APP_USE_PACKAGED_LAZY "Bundle recommended Qt plugins for self-contained packages. (Linux only)" OFF)