blob: 2b95551b6929c3c7f7f2dbf5bd96f45a9139126f (
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 LibGUI LibIPC LibMain)
|