mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
631d36fd98
This adds component declarations so that users can select to not build certain parts of the OS.
20 lines
392 B
CMake
20 lines
392 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)
|