From 5cf756976706d276831dd66654174f94c5e66904 Mon Sep 17 00:00:00 2001 From: Ali Chraghi Date: Sat, 27 Aug 2022 12:41:32 +0430 Subject: [PATCH] build: fix gamemode package path --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index ce299f11..7af77713 100644 --- a/build.zig +++ b/build.zig @@ -245,7 +245,7 @@ pub const App = struct { exe.addPackage(glfw.pkg); if (target.os.tag == .linux) { - exe.addPackagePath("gamemode", (comptime thisDir()) ++ "/gamemode/gamemode.zig"); + exe.addPackagePath("gamemode", (comptime thisDir()) ++ "/libs/gamemode/gamemode.zig"); } break :blk exe;