mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 11:39:44 +03:00
ad6a55e1f0
This is a first step in deduplicating code within and across Help and man. Because LibManual also doesn't contain any DeprecatedString, some adjustments to Help's string handling is included, just to interoperate with LibManual better. Further work in this area mostly requires String APIs in LibGUI.
24 lines
455 B
CMake
24 lines
455 B
CMake
serenity_component(
|
|
Help
|
|
RECOMMENDED
|
|
TARGETS Help
|
|
DEPENDS WebContent
|
|
)
|
|
|
|
compile_gml(HelpWindow.gml HelpWindowGML.h help_window_gml)
|
|
|
|
set(SOURCES
|
|
History.cpp
|
|
main.cpp
|
|
MainWidget.cpp
|
|
ManualModel.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
HelpWindowGML.h
|
|
)
|
|
|
|
serenity_app(Help ICON app-help)
|
|
target_link_libraries(Help PRIVATE LibCore LibWebView LibWeb LibMarkdown LibGfx LibGUI LibDesktop LibMain LibManual)
|
|
link_with_locale_data(Help)
|