mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:48:11 +00:00

This adds component declarations so that users can select to not build certain parts of the OS.
22 lines
472 B
CMake
22 lines
472 B
CMake
serenity_component(
|
|
Profiler
|
|
RECOMMENDED
|
|
TARGETS Profiler
|
|
)
|
|
|
|
set(SOURCES
|
|
DisassemblyModel.cpp
|
|
main.cpp
|
|
IndividualSampleModel.cpp
|
|
Process.cpp
|
|
Profile.cpp
|
|
ProfileModel.cpp
|
|
SamplesModel.cpp
|
|
TimelineContainer.cpp
|
|
TimelineHeader.cpp
|
|
TimelineTrack.cpp
|
|
TimelineView.cpp
|
|
)
|
|
|
|
serenity_app(Profiler ICON app-profiler)
|
|
target_link_libraries(Profiler LibGUI LibDesktop LibX86)
|