ladybird/Userland/Applications/Help/CMakeLists.txt
kleines Filmröllchen ad6a55e1f0 Help+LibManual: Move non-UI-specific manual handling to LibManual
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.
2022-12-11 16:05:23 +00:00

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)