From b83c9f5c6f8404904d86a607a37c5ebd2703dcae Mon Sep 17 00:00:00 2001 From: Aaron Blasko Date: Fri, 11 Apr 2025 00:31:07 +0200 Subject: [PATCH] cmake: do not install version.h.in (#10035) --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 65586f5a9..1d330c787 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -447,6 +447,7 @@ install( DIRECTORY ${HEADERS_SRC} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/hyprland FILES_MATCHING - PATTERN "*.h*" + PATTERN "*.h" + PATTERN "*.hpp" PATTERN "*.inc" )