Files
banan-os/userspace/tests/test-shared/CMakeLists.txt
Bananymous 991647bc8f Userspace: Add shared library test
I will use this while testing my dynamic loader
2024-08-28 17:08:37 +03:00

9 lines
147 B
CMake

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