From d67ef1fb6ff45ce49a9890d6520f5b1a74965c21 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 13 May 2025 09:07:28 +0200 Subject: [PATCH] [cmake,sdl] remove redundant variable --- client/SDL/common/aad/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/SDL/common/aad/CMakeLists.txt b/client/SDL/common/aad/CMakeLists.txt index 9e45587c2..a8e971c44 100644 --- a/client/SDL/common/aad/CMakeLists.txt +++ b/client/SDL/common/aad/CMakeLists.txt @@ -15,9 +15,8 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -set(WITH_WEBVIEW_DEFAULT OFF) -option(WITH_WEBVIEW "Build with WebView support for AAD login popup browser" ${WITH_WEBVIEW_DEFAULT}) +option(WITH_WEBVIEW "Build with WebView support for AAD login popup browser" OFF) if(WITH_WEBVIEW) set(SRCS sdl_webview.hpp webview_impl.hpp sdl_webview.cpp) set(LIBS winpr)