mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 12:35:07 +00:00

There's a lot more work to do on this application to take full advantage of TRY() etc. This patch just scratches the surface.
21 lines
514 B
CMake
21 lines
514 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 LibMain)
|