2000th COMMIT: userspace: Implement basic fetch program bananfetch

This patch adds a obligatory fetch program to banan-os!

This program (`bananfetch`) fetches some basic information about the
operating system and the hardware its running on!
This commit is contained in:
2024-08-09 15:56:33 +03:00
parent 44f0ec601f
commit 91d513a672
3 changed files with 291 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
set(SOURCES
main.cpp
)
add_executable(bananfetch ${SOURCES})
banan_link_library(bananfetch ban)
banan_link_library(bananfetch libc)
install(TARGETS bananfetch OPTIONAL)