summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-06-04 17:10:54 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-04 19:11:13 +0200
commitd840608a5177addef2b1144c0d5706a063b54ad5 (patch)
treedf272364bb67d5e25d44e63318dbe0c5fa4d08ba /Userland
parent18a5ac1e66a88eabe9725caeab6dbbe6246e37db (diff)
downloadserenity-d840608a5177addef2b1144c0d5706a063b54ad5.zip
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.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Services/Taskbar/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/Taskbar/CMakeLists.txt b/Userland/Services/Taskbar/CMakeLists.txt
index 14386c01fc..1367480921 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)