mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:17:44 +00:00
Build: Switch to CMake :^)
Closes https://github.com/SerenityOS/serenity/issues/2080
This commit is contained in:
parent
49727ffee4
commit
450a2a0f9c
236 changed files with 1774 additions and 2337 deletions
16
Applications/SystemMonitor/CMakeLists.txt
Normal file
16
Applications/SystemMonitor/CMakeLists.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
set(SOURCES
|
||||
DevicesModel.cpp
|
||||
GraphWidget.cpp
|
||||
main.cpp
|
||||
MemoryStatsWidget.cpp
|
||||
NetworkStatisticsWidget.cpp
|
||||
ProcessFileDescriptorMapWidget.cpp
|
||||
ProcessMemoryMapWidget.cpp
|
||||
ProcessModel.cpp
|
||||
ProcessStacksWidget.cpp
|
||||
ProcessTableView.cpp
|
||||
ProcessUnveiledPathsWidget.cpp
|
||||
)
|
||||
|
||||
serenity_bin(SystemMonitor)
|
||||
target_link_libraries(SystemMonitor LibGUI LibPCIDB)
|
|
@ -1,18 +0,0 @@
|
|||
OBJS = \
|
||||
ProcessModel.o \
|
||||
DevicesModel.o \
|
||||
ProcessTableView.o \
|
||||
MemoryStatsWidget.o \
|
||||
GraphWidget.o \
|
||||
ProcessStacksWidget.o \
|
||||
ProcessMemoryMapWidget.o \
|
||||
ProcessFileDescriptorMapWidget.o \
|
||||
NetworkStatisticsWidget.o \
|
||||
ProcessUnveiledPathsWidget.o \
|
||||
main.o
|
||||
|
||||
PROGRAM = SystemMonitor
|
||||
|
||||
LIB_DEPS = GUI Gfx Protocol PCIDB IPC Thread Pthread Core
|
||||
|
||||
include ../../Makefile.common
|
Loading…
Add table
Add a link
Reference in a new issue