summaryrefslogtreecommitdiff
path: root/Userland/Services/NotificationServer/CMakeLists.txt
blob: 76c97e60cf789fbaa4318314e0b1ad9ee808047d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
)

set(GENERATED_SOURCES
    NotificationServerEndpoint.h
    NotificationClientEndpoint.h
)

serenity_bin(NotificationServer)
target_link_libraries(NotificationServer PRIVATE LibCore LibGfx LibGUI LibIPC LibMain)