mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-14 15:13:07 +00:00
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.
21 lines
413 B
CMake
21 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)
|