From 7cc442dc44a957b8c10529aab2c10da5586f5672 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 15 May 2020 09:46:55 +0200 Subject: [PATCH] LibGUI: Fix build (LibGUI depends on Clipboard IPC classes) --- Libraries/LibGUI/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Libraries/LibGUI/CMakeLists.txt b/Libraries/LibGUI/CMakeLists.txt index 3df083b187..3dab0a2460 100644 --- a/Libraries/LibGUI/CMakeLists.txt +++ b/Libraries/LibGUI/CMakeLists.txt @@ -81,6 +81,8 @@ set(GENERATED_SOURCES ../../Services/WindowServer/WindowServerEndpoint.h ../../Services/NotificationServer/NotificationClientEndpoint.h ../../Services/NotificationServer/NotificationServerEndpoint.h + ../../Services/Clipboard/ClipboardClientEndpoint.h + ../../Services/Clipboard/ClipboardServerEndpoint.h ) serenity_lib(LibGUI gui)