mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 17:05:10 +00:00

Combine the "PCI devices" and "Processors" tabs into a "Hardware" tab. And then remove the "Interrupts" tab because the number of received IRQ's per device is not really useful information to expose in this GUI. If the user needs this, he can check lsirq.
21 lines
506 B
CMake
21 lines
506 B
CMake
serenity_component(
|
|
SystemMonitor
|
|
REQUIRED
|
|
TARGETS SystemMonitor Profiler Inspector
|
|
)
|
|
|
|
set(SOURCES
|
|
GraphWidget.cpp
|
|
main.cpp
|
|
MemoryStatsWidget.cpp
|
|
NetworkStatisticsWidget.cpp
|
|
ProcessFileDescriptorMapWidget.cpp
|
|
ProcessMemoryMapWidget.cpp
|
|
ProcessModel.cpp
|
|
ProcessUnveiledPathsWidget.cpp
|
|
ProcessStateWidget.cpp
|
|
ThreadStackWidget.cpp
|
|
)
|
|
|
|
serenity_app(SystemMonitor ICON app-system-monitor)
|
|
target_link_libraries(SystemMonitor LibGUI LibSymbolication LibPCIDB)
|