Files
banan-os/userspace/programs/sort/CMakeLists.txt
Bananymous fa89645542 userspace: Implement simple sort utility
This supports most(?) options except for the separate fields. Should
work for simple use cases

Also merge is currently just a wrapper around sort so its not optimized
:D
2026-07-08 21:48:14 +03:00

10 lines
148 B
CMake

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