diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-04 10:28:47 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-04 14:38:43 +0200 |
commit | 19bef3877a68b029020c6d185cab4df6e80e25c4 (patch) | |
tree | 08059fb7176aa5592fc7e80f7c26fede5f452870 /Userland | |
parent | f7de453716871b928a3f92719b16c759261afc09 (diff) | |
download | serenity-19bef3877a68b029020c6d185cab4df6e80e25c4.zip |
Profiler: Don't link against LibCoreDump
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/DevTools/Profiler/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/Profiler/CMakeLists.txt b/Userland/DevTools/Profiler/CMakeLists.txt index 57a5e0abe3..c9f2dd8e53 100644 --- a/Userland/DevTools/Profiler/CMakeLists.txt +++ b/Userland/DevTools/Profiler/CMakeLists.txt @@ -11,4 +11,4 @@ set(SOURCES ) serenity_app(Profiler ICON app-profiler) -target_link_libraries(Profiler LibGUI LibDesktop LibX86 LibCoreDump) +target_link_libraries(Profiler LibGUI LibDesktop LibX86) |