mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 07:55:07 +00:00

The flamegraph makes it easier to quickly spot expensive functions, based on the width of their bar.
24 lines
543 B
CMake
24 lines
543 B
CMake
serenity_component(
|
|
Profiler
|
|
RECOMMENDED
|
|
TARGETS Profiler
|
|
)
|
|
|
|
set(SOURCES
|
|
DisassemblyModel.cpp
|
|
main.cpp
|
|
IndividualSampleModel.cpp
|
|
FlameGraphView.cpp
|
|
Process.cpp
|
|
Profile.cpp
|
|
ProfileModel.cpp
|
|
SamplesModel.cpp
|
|
SignpostsModel.cpp
|
|
TimelineContainer.cpp
|
|
TimelineHeader.cpp
|
|
TimelineTrack.cpp
|
|
TimelineView.cpp
|
|
)
|
|
|
|
serenity_app(Profiler ICON app-profiler)
|
|
target_link_libraries(Profiler LibGUI LibDesktop LibX86 LibSymbolication)
|