From 450a2a0f9ce2443bc06445ee018c9860d8cd5fc8 Mon Sep 17 00:00:00 2001 From: Sergey Bugaev Date: Wed, 6 May 2020 18:40:06 +0300 Subject: Build: Switch to CMake :^) Closes https://github.com/SerenityOS/serenity/issues/2080 --- Services/NotificationServer/CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Services/NotificationServer/CMakeLists.txt (limited to 'Services/NotificationServer/CMakeLists.txt') diff --git a/Services/NotificationServer/CMakeLists.txt b/Services/NotificationServer/CMakeLists.txt new file mode 100644 index 0000000000..a28d9f16a5 --- /dev/null +++ b/Services/NotificationServer/CMakeLists.txt @@ -0,0 +1,13 @@ +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) -- cgit v1.2.3