Files
banan-os/userspace/programs/less/CMakeLists.txt
Bananymous 37dea8aee7 userspace: Implement basic less program
This is very simple and only supports couple of flags and scrolling
2025-05-29 01:00:28 +03:00

10 lines
148 B
CMake

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