1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:47:45 +00:00

Userland: Depend some applications on WebContent if it's being used

Deduced this mostly by looking at unveil()s.
This commit is contained in:
Karol Kosek 2022-05-26 00:06:41 +02:00 committed by Linus Groh
parent a41dfc416f
commit 3667d7e93c
5 changed files with 5 additions and 2 deletions

View file

@ -2,6 +2,7 @@ serenity_component(
Help
RECOMMENDED
TARGETS Help
DEPENDS WebContent
)
compile_gml(HelpWindow.gml HelpWindowGML.h help_window_gml)

View file

@ -2,6 +2,7 @@ serenity_component(
Mail
RECOMMENDED
TARGETS Mail
DEPENDS WebContent
)
compile_gml(MailWindow.gml MailWindowGML.h mail_window_gml)

View file

@ -1,6 +1,7 @@
serenity_component(
Spreadsheet
TARGETS Spreadsheet
DEPENDS WebContent
)
compile_gml(CondFormatting.gml CondFormattingGML.h cond_fmt_gml)

View file

@ -1,7 +1,7 @@
serenity_component(
Welcome
TARGETS Welcome
DEPENDS Help
DEPENDS Help WebContent
)
compile_gml(WelcomeWindow.gml WelcomeWindowGML.h welcome_window_gml)

View file

@ -2,7 +2,7 @@ serenity_component(
HackStudio
RECOMMENDED
TARGETS HackStudio
DEPENDS CppLanguageServer ShellLanguageServer
DEPENDS CppLanguageServer ShellLanguageServer WebContent
)
add_subdirectory(LanguageServers)