From 6f9e56870ed516c66245535ec6d45803a1def52c Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Fri, 30 May 2025 15:16:20 -0600 Subject: [PATCH] CMake: Exclude GlobalFontConfig.h from autogenerated clang module This header file is never included by any other headers, and including it would require adding the fontconfig include paths to the swift interop header generation, which is not desirable. --- Libraries/LibGfx/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/LibGfx/CMakeLists.txt b/Libraries/LibGfx/CMakeLists.txt index 56b7e69a70b..4281ec57079 100644 --- a/Libraries/LibGfx/CMakeLists.txt +++ b/Libraries/LibGfx/CMakeLists.txt @@ -59,6 +59,7 @@ set(SOURCES ) set(SWIFT_EXCLUDE_HEADERS + GlobalFontConfig.h MetalContext.h VulkanContext.h SkiaUtils.h