1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:18:12 +00:00
serenity/DevTools/ProfileViewer/Makefile
Andreas Kling 69583f07e0 ProfileViewer: Add an instruction-level sample viewer
When you select a function in the profile tree, we will now display
a per-instruction breakdown of aggregated samples in that function.

This allows us to look much closer at what our code is doing! :^)
2020-04-11 18:46:11 +02:00

12 lines
201 B
Makefile

OBJS = \
DisassemblyModel.o \
Profile.o \
ProfileModel.o \
ProfileTimelineWidget.o \
main.o
PROGRAM = ProfileViewer
LIB_DEPS = GUI Gfx IPC Core X86
include ../../Makefile.common