programs can now connect to the clipboard server using libclipboard and get and set the clipboard of the current user
11 lines
244 B
CMake
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)
|