From 6d913db9fe99c3917a911eef955e1d4f0b9cd8ee Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 30 Mar 2021 20:18:36 +0200 Subject: [PATCH] WindowServer: Install WindowServer headers This is a bit clunky since we really only need WindowType.h and don't really want to consider any other headers "public" but this is just to make the SDL port build again now that LibGUI includes WindowType.h from WindowServer. Long term we should probably figure out a way to only install "API" headers from libraries. --- Userland/Services/WindowServer/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Services/WindowServer/CMakeLists.txt b/Userland/Services/WindowServer/CMakeLists.txt index b822fec6b5..33a3b7f040 100644 --- a/Userland/Services/WindowServer/CMakeLists.txt +++ b/Userland/Services/WindowServer/CMakeLists.txt @@ -24,3 +24,4 @@ set(SOURCES serenity_bin(WindowServer) target_link_libraries(WindowServer LibCore LibGfx LibThread LibPthread LibIPC) +serenity_install_headers(Services/WindowServer)