From 3e3e35f558ce4ec192bf2bd4470bea925fed3d0a Mon Sep 17 00:00:00 2001 From: Producdevity Date: Sun, 27 Jul 2025 13:14:44 +0200 Subject: [PATCH] fix: exclude Android from `gamemode` sources in CMakeLists.txt --- src/common/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index d7097c8cd7..e9492814f7 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -196,7 +196,7 @@ if(ANDROID) ) endif() -if (UNIX AND NOT APPLE) +if (UNIX AND NOT APPLE AND NOT ANDROID) target_sources(common PRIVATE linux/gamemode.cpp linux/gamemode.h