1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:48:10 +00:00
serenity/Userland/DevTools/Profiler/CMakeLists.txt
Andreas Kling 1fb1279cfd Profiler: Add a new "Samples" view to the main UI
You can now view the individual samples in a profile one by one with
the new "Samples" view. The "old" main view moves into a "Call Tree"
tab (but it remains the default view.)

When you select a sample in the samples view, we show you the full
symbolicated backtrace in a separate view on the right hand side. :^)
2021-02-27 18:34:21 +01:00

12 lines
297 B
CMake

set(SOURCES
DisassemblyModel.cpp
main.cpp
IndividualSampleModel.cpp
Profile.cpp
ProfileModel.cpp
ProfileTimelineWidget.cpp
SamplesModel.cpp
)
serenity_app(Profiler ICON app-profiler)
target_link_libraries(Profiler LibGUI LibDesktop LibX86 LibCoreDump)