From 46b00a4a861370e2ba560732df6f0783cf5cf9b5 Mon Sep 17 00:00:00 2001 From: micha4w <85169193+micha4w@users.noreply.github.com> Date: Sun, 30 Mar 2025 01:25:02 +0100 Subject: [PATCH] makefile: add new shaders to `make installheaders` (#9783) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c79b8db..74cf0c66 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ installheaders: cmake --build ./build --config Release --target generate-protocol-headers - find src -name '*.h*' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland + find src -name '*.h*' -o -name '*.inc' -print0 | cpio --quiet -0dump ${PREFIX}/include/hyprland cp ./protocols/*.h* ${PREFIX}/include/hyprland/protocols cp ./build/hyprland.pc ${PREFIX}/share/pkgconfig if [ -d /usr/share/pkgconfig ]; then cp ./build/hyprland.pc /usr/share/pkgconfig 2>/dev/null || true; fi