userspace programs are now in userspace/programs userspace tests are now in userspace/tests This makes listing userspace projects much cleaner. Libraries were already separated to their own directory, so other programs should also.
10 lines
171 B
CMake
10 lines
171 B
CMake
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
add_executable(test-sort ${SOURCES})
|
|
banan_include_headers(test-sort ban)
|
|
banan_link_library(test-sort libc)
|
|
|
|
install(TARGETS test-sort OPTIONAL)
|