summaryrefslogtreecommitdiff
path: root/Userland/Services/SpiceAgent/CMakeLists.txt
blob: d7eac78e658b0ec85a85cefffabb46a6ee25c22d (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
    ClipboardServerConnection.cpp
)

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