1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:07:34 +00:00

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
This commit is contained in:
Karol Kosek 2021-10-20 22:32:35 +02:00 committed by Andreas Kling
parent 2d48529073
commit a36d13e36c

View file

@ -1,5 +1,6 @@
serenity_component(
LoginServer
REQUIRED
TARGETS LoginServer
)