From a36d13e36c707635b2b0b6727d542b92e609277a Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Wed, 20 Oct 2021 22:32:35 +0200 Subject: [PATCH] LoginServer: Mark this component as REQUIRED Prior to this change, there was no requirement to build this server. If you build serenity without -DBUILD_EVERYTHING flag, or just play around with your build configuration[1], it left you with a blank screen and this debug line: SystemServer(6:6): LoginServer: binary "/bin/LoginServer" does not exist, skipping service. [1]: Documentation/AdvancedBuildInstructions.md#component-configuration --- Userland/Services/LoginServer/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Services/LoginServer/CMakeLists.txt b/Userland/Services/LoginServer/CMakeLists.txt index b43f3bcccd..972d5e9246 100644 --- a/Userland/Services/LoginServer/CMakeLists.txt +++ b/Userland/Services/LoginServer/CMakeLists.txt @@ -1,5 +1,6 @@ serenity_component( LoginServer + REQUIRED TARGETS LoginServer )