From 7d1e7d95e92d1fbbfffd0e4880ed5705e0600da3 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Fri, 8 Dec 2023 17:25:38 +0100 Subject: [PATCH] Disabled the application updater when building for Android --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6552d1eb0..27477c0b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: MIT # -# EmulationStation Desktop Edition +# ES-DE # CMakeLists.txt # # Main CMake configuration file. @@ -359,7 +359,7 @@ if(VIDEO_HW_DECODING) message("-- Building with FFmpeg HW decoding") endif() -if(AUR_BUILD OR FLATPAK_BUILD OR RETRODECK OR RPI) +if(AUR_BUILD OR FLATPAK_BUILD OR RETRODECK OR RPI OR ANDROID) set(APPLICATION_UPDATER OFF) endif()