From cf378dfd6d935937b5206cacbbbdecf57cd0e6b3 Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Mon, 6 Oct 2025 12:39:30 +0800 Subject: [PATCH] add brotli include path --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 6235cb4c..3437dfad 100644 --- a/build.zig +++ b/build.zig @@ -493,7 +493,7 @@ fn buildBrotli(b: *Build, m: *Build.Module) !void { }); const root = "vendor/brotli/c/"; - brotli.installHeader(b.path(root ++ "brotli.h"), "brotli.h"); + brotli.addIncludePath(b.path(root ++ "include")); brotli.addCSourceFiles(.{ .flags = &.{}, .files = &.{ root ++ "common/constants.c", root ++ "common/context.c",