mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:08:11 +00:00
13 lines
366 B
CMake
13 lines
366 B
CMake
compile_ipc(NotificationServer.ipc NotificationServerEndpoint.h)
|
|
compile_ipc(NotificationClient.ipc NotificationClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ClientConnection.cpp
|
|
main.cpp
|
|
NotificationWindow.cpp
|
|
NotificationServerEndpoint.h
|
|
NotificationClientEndpoint.h
|
|
)
|
|
|
|
serenity_bin(NotificationServer)
|
|
target_link_libraries(NotificationServer LibGUI LibIPC)
|