1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:47:36 +00:00

Help: Handle external links

Links which do not have the "file" protocol (most commonly links to
external websites - http and https) are now not treated as file paths
anymore but instead handled by Desktop::Launcher.

The same applies to files outside of /usr/share/man.

Fixes #2727.
This commit is contained in:
Linus Groh 2020-07-07 13:55:10 +01:00 committed by Andreas Kling
parent 787673b743
commit 87465f7c54
2 changed files with 28 additions and 6 deletions

View file

@ -7,4 +7,4 @@ set(SOURCES
)
serenity_bin(Help)
target_link_libraries(Help LibWeb LibMarkdown LibGUI)
target_link_libraries(Help LibWeb LibMarkdown LibGUI LibDesktop)