mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 06:14:58 +00:00
24 lines
608 B
CMake
24 lines
608 B
CMake
serenity_component(
|
|
NotificationServer
|
|
REQUIRED
|
|
TARGETS NotificationServer
|
|
)
|
|
|
|
compile_gml(NotificationWidget.gml NotificationWidgetGML.cpp)
|
|
compile_ipc(NotificationServer.ipc NotificationServerEndpoint.h)
|
|
compile_ipc(NotificationClient.ipc NotificationClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ConnectionFromClient.cpp
|
|
main.cpp
|
|
NotificationWidgetGML.cpp
|
|
NotificationWindow.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
NotificationServerEndpoint.h
|
|
NotificationClientEndpoint.h
|
|
)
|
|
|
|
serenity_bin(NotificationServer)
|
|
target_link_libraries(NotificationServer PRIVATE LibCore LibGfx LibGUI LibIPC LibMain)
|