From 7de4fb29470192752b0cea0684a83580217a8f64 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Wed, 19 Jul 2023 09:55:49 -0600 Subject: [PATCH] LibCore: Build LocalSocket on Android --- Userland/Libraries/LibCore/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Userland/Libraries/LibCore/CMakeLists.txt b/Userland/Libraries/LibCore/CMakeLists.txt index 2acb32b655..c4f530dcac 100644 --- a/Userland/Libraries/LibCore/CMakeLists.txt +++ b/Userland/Libraries/LibCore/CMakeLists.txt @@ -41,9 +41,11 @@ if (NOT ANDROID AND NOT WIN32 AND NOT EMSCRIPTEN) FilePermissionsMask.cpp GetPassword.cpp Group.cpp - LocalServer.cpp ) endif() +if (NOT WIN32 AND NOT EMSCRIPTEN) + list(APPEND SOURCES LocalServer.cpp) +endif() # FIXME: Implement Core::FileWatcher for macOS, *BSD, and Windows. if (SERENITYOS)