Files
banan-os/userspace/programs/ClipboardServer/CMakeLists.txt
Bananymous 291f298d19 userspace: Implement LibClipboard and ClipboardServer
programs can now connect to the clipboard server using libclipboard and
get and set the clipboard of the current user
2025-11-18 05:40:36 +02:00

11 lines
244 B
CMake

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