mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
This was done with CLion's automatic rename feature and with:
find . -name ClientConnection.h
| rename 's/ClientConnection\.h/ConnectionFromClient.h/'
find . -name ClientConnection.cpp
| rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
20 lines
468 B
CMake
20 lines
468 B
CMake
serenity_component(
|
|
NotificationServer
|
|
REQUIRED
|
|
TARGETS NotificationServer
|
|
)
|
|
|
|
compile_ipc(NotificationServer.ipc NotificationServerEndpoint.h)
|
|
compile_ipc(NotificationClient.ipc NotificationClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ConnectionFromClient.cpp
|
|
main.cpp
|
|
NotificationWindow.cpp
|
|
NotificationServerEndpoint.h
|
|
NotificationClientEndpoint.h
|
|
)
|
|
|
|
serenity_bin(NotificationServer)
|
|
target_link_libraries(NotificationServer LibGUI LibIPC LibMain)
|