summaryrefslogtreecommitdiff
path: root/Userland/Services/SpiceAgent/CMakeLists.txt
blob: 7131356e845e3acbfe4c681689046124cd113ce2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
serenity_component(
    SpiceAgent
    TARGETS SpiceAgent
)

set(SOURCES
    main.cpp
    SpiceAgent.cpp
    ConnectionToClipboardServer.cpp
)

serenity_bin(SpiceAgent)
target_link_libraries(SpiceAgent LibGfx LibCore LibIPC LibMain)
add_dependencies(SpiceAgent Clipboard)