Files
banan-os/userspace/tests/test-unix-socket/CMakeLists.txt
Bananymous 8ddab05ed3 BuildSystem: Cleanup userspace directory layout
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.
2024-07-03 09:18:02 +03:00

9 lines
155 B
CMake

set(SOURCES
main.cpp
)
add_executable(test-unix-socket ${SOURCES})
banan_link_library(test-unix-socket libc)
install(TARGETS test-unix-socket OPTIONAL)