gamemode: Fix gamemode package path in build.zig

This commit is contained in:
PiergiorgioZagaria 2022-08-03 19:16:47 +02:00 committed by Stephen Gutekanst
parent 0b187c44db
commit 00ef0a639e

View file

@ -227,7 +227,7 @@ pub const App = struct {
exe.addPackage(glfw.pkg); exe.addPackage(glfw.pkg);
if (target.os.tag == .linux) { if (target.os.tag == .linux) {
exe.addPackagePath("gamemode", "gamemode/gamemode.zig"); exe.addPackagePath("gamemode", thisDir() ++ "/gamemode/gamemode.zig");
} }
break :blk exe; break :blk exe;