ladybird/Userland/Applications/Help/CMakeLists.txt
thankyouverycool 8825abe7ed Help: Convert to GML and propagate more errors
Converts Help's layout to GML, propagates model and icon creation
errors, and switches to the MainWidget-namespace organization
pattern seen in more up-to-date apps like TextEditor to make things
easier to maintain going forward.
2022-03-02 21:37:58 +01:00

22 lines
413 B
CMake

serenity_component(
Help
RECOMMENDED
TARGETS Help
)
compile_gml(HelpWindow.gml HelpWindowGML.h help_window_gml)
set(SOURCES
HelpWindowGML.h
History.cpp
main.cpp
MainWidget.cpp
ManualModel.cpp
ManualPageNode.cpp
ManualSectionNode.cpp
)
serenity_app(Help ICON app-help)
target_link_libraries(Help LibWeb LibMarkdown LibGUI LibDesktop LibMain)
link_with_unicode_data(Help)