diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-10-21 21:43:56 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-01 14:49:09 +0000 |
commit | ce2f1b845fbd94013e36377aaa7375466cf1241d (patch) | |
tree | 04b2c31571a3397a9b88d7df6912504b6c59ca73 /Userland/Applets/ResourceGraph | |
parent | 678db534ff772cb9d35d7edf10af8a9f89ad3638 (diff) | |
download | serenity-ce2f1b845fbd94013e36377aaa7375466cf1241d.zip |
Everywhere: Mark dependencies of most targets as PRIVATE
Otherwise, we end up propagating those dependencies into targets that
link against that library, which creates unnecessary link-time
dependencies.
Also included are changes to readd now missing dependencies to tools
that actually need them.
Diffstat (limited to 'Userland/Applets/ResourceGraph')
-rw-r--r-- | Userland/Applets/ResourceGraph/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applets/ResourceGraph/CMakeLists.txt b/Userland/Applets/ResourceGraph/CMakeLists.txt index 902deb8bd2..4a9a736f02 100644 --- a/Userland/Applets/ResourceGraph/CMakeLists.txt +++ b/Userland/Applets/ResourceGraph/CMakeLists.txt @@ -9,4 +9,4 @@ set(SOURCES ) serenity_bin(ResourceGraph.Applet) -target_link_libraries(ResourceGraph.Applet LibGUI LibCore LibGfx LibMain) +target_link_libraries(ResourceGraph.Applet PRIVATE LibGUI LibCore LibGfx LibMain) |