summaryrefslogtreecommitdiff
path: root/Userland/Services/SpiceAgent/CMakeLists.txt
blob: 4fc96824f25ed9b32050fca315cff582d1f1c4db (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 PRIVATE LibGfx LibCore LibIPC LibMain)
add_dependencies(SpiceAgent Clipboard)