From a8d8fedf9505d171d8ac0e5c2b4f7cf17b3850b3 Mon Sep 17 00:00:00 2001 From: LeRoyce Pearson Date: Mon, 26 Sep 2022 20:57:46 -0600 Subject: [PATCH] gamemode: addIncludeDir -> addIncludePath (#569) --- libs/gamemode/build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gamemode/build.zig b/libs/gamemode/build.zig index c2db5b83..d7963a4d 100644 --- a/libs/gamemode/build.zig +++ b/libs/gamemode/build.zig @@ -6,7 +6,7 @@ pub const pkg = std.build.Pkg{ }; pub fn link(step: *std.build.LibExeObjStep) void { - step.addIncludeDir(comptime thisDir() ++ "/upstream/include"); + step.addIncludePath(comptime thisDir() ++ "/upstream/include"); } fn thisDir() []const u8 {