From d840608a5177addef2b1144c0d5706a063b54ad5 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Fri, 4 Jun 2021 17:10:54 +0200 Subject: [PATCH] Taskbar: Make sure LibGUI/Desktop.h is usable in ports Now that Desktop.h includes Services/Taskbar/TaskbarWindow.h we have to install Taskbar's header files so that Desktop.h can be used in ports or when building software in-target. --- Userland/Services/Taskbar/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Services/Taskbar/CMakeLists.txt b/Userland/Services/Taskbar/CMakeLists.txt index 14386c01fc1..1367480921d 100644 --- a/Userland/Services/Taskbar/CMakeLists.txt +++ b/Userland/Services/Taskbar/CMakeLists.txt @@ -9,3 +9,4 @@ set(SOURCES serenity_bin(Taskbar) target_link_libraries(Taskbar LibGUI LibDesktop) +serenity_install_headers(Services/Taskbar)