summaryrefslogtreecommitdiff
path: root/Userland/Services/NotificationServer/CMakeLists.txt
blob: de61a0f3b9c3c93a07c10c061f249ff3a093ba5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
serenity_component(
    NotificationServer
    REQUIRED
    TARGETS NotificationServer
)

compile_ipc(NotificationServer.ipc NotificationServerEndpoint.h)
compile_ipc(NotificationClient.ipc NotificationClientEndpoint.h)

set(SOURCES
    ConnectionFromClient.cpp
    main.cpp
    NotificationWindow.cpp
    NotificationServerEndpoint.h
    NotificationClientEndpoint.h
)

serenity_bin(NotificationServer)
target_link_libraries(NotificationServer LibGUI LibIPC LibMain)