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!
10 lines
172 B
CMake
10 lines
172 B
CMake
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
add_executable(bananfetch ${SOURCES})
|
|
banan_link_library(bananfetch ban)
|
|
banan_link_library(bananfetch libc)
|
|
|
|
install(TARGETS bananfetch OPTIONAL)
|