1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 18:35:09 +00:00
serenity/Userland/Services/NotificationServer/CMakeLists.txt
2021-11-23 15:44:59 +01:00

19 lines
464 B
CMake

serenity_component(
NotificationServer
REQUIRED
TARGETS NotificationServer
)
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 LibMain)