ladybird/Userland/Applications/Welcome/CMakeLists.txt
Karol Kosek 3667d7e93c Userland: Depend some applications on WebContent if it's being used
Deduced this mostly by looking at unveil()s.
2022-05-26 21:54:58 +01:00

18 lines
349 B
CMake

serenity_component(
Welcome
TARGETS Welcome
DEPENDS Help WebContent
)
compile_gml(WelcomeWindow.gml WelcomeWindowGML.h welcome_window_gml)
set(SOURCES
WelcomeWindowGML.h
WelcomeWidget.cpp
WelcomeWidget.h
main.cpp
)
serenity_app(Welcome ICON app-welcome)
target_link_libraries(Welcome LibGUI LibWebView LibWeb LibMain)