mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
Meta: Don't build Core::LocalServer on Android
We won't be able to use local servers on Android without some serious Android work to create background tasks, so just disable this for now, as it currently relies on Core::Account to take over from SystemServer.
This commit is contained in:
parent
cca54e9535
commit
d6a741af6c
Notes:
sideshowbarker
2024-07-17 06:43:31 +09:00
Author: https://github.com/ADKaster Commit: https://github.com/SerenityOS/serenity/commit/d6a741af6c Pull-request: https://github.com/SerenityOS/serenity/pull/15320 Reviewed-by: https://github.com/trflynn89 ✅
1 changed files with 1 additions and 0 deletions
|
@ -263,6 +263,7 @@ file(GLOB AK_SOURCES CONFIGURE_DEPENDS "../../AK/*.cpp")
|
|||
file(GLOB LIBCORE_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibCore/*.cpp")
|
||||
if (ANDROID)
|
||||
list(REMOVE_ITEM LIBCORE_SOURCES "${CMAKE_CURRENT_LIST_DIR}/../../Userland/Libraries/LibCore/Account.cpp")
|
||||
list(REMOVE_ITEM LIBCORE_SOURCES "${CMAKE_CURRENT_LIST_DIR}/../../Userland/Libraries/LibCore/LocalServer.cpp")
|
||||
endif()
|
||||
lagom_lib(Core core
|
||||
SOURCES ${AK_SOURCES} ${LIBCORE_SOURCES}
|
||||
|
|
Loading…
Reference in a new issue