Files
banan-os/userspace/programs/top/CMakeLists.txt
Bananymous 32c10f7db2 Userspace: Add very simple top program
This is very bare bones but does show what programs use most cpu and
memory
2026-06-30 20:14:37 +03:00

10 lines
144 B
CMake

set(SOURCES
main.cpp
)
add_executable(top ${SOURCES})
banan_link_library(top ban)
banan_link_library(top libc)
install(TARGETS top OPTIONAL)