1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:48:12 +00:00
serenity/Userland/Services/NotificationServer/CMakeLists.txt
Gunnar Beutner 631d36fd98 Everywhere: Add component declarations
This adds component declarations so that users can select to not build
certain parts of the OS.
2021-06-17 11:03:51 +02:00

19 lines
456 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)