mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 19:32:06 -05:00
19 lines
400 B
CMake
19 lines
400 B
CMake
serenity_component(
|
|
Clipboard
|
|
REQUIRED
|
|
TARGETS Clipboard
|
|
)
|
|
|
|
compile_ipc(ClipboardServer.ipc ClipboardServerEndpoint.h)
|
|
compile_ipc(ClipboardClient.ipc ClipboardClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ClientConnection.cpp
|
|
ClipboardClientEndpoint.h
|
|
ClipboardServerEndpoint.h
|
|
Storage.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(Clipboard)
|
|
target_link_libraries(Clipboard LibCore LibIPC LibMain)
|