mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 18:35:09 +00:00
19 lines
464 B
CMake
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)
|