diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | build.zig | 4 |
3 files changed, 4 insertions, 3 deletions
@@ -1,2 +1,3 @@ zig-cache/ +.zig-cache/ zig-out/ @@ -1 +1 @@ -[mgl](https://git.dec05eba.com/mgl/about/) build for zig. See [mgl-zig-example](https://git.dec05eba.com/mgl-zig-example/about) for an example on how to use this. +[mgl](https://git.dec05eba.com/mgl/about/) build for zig 0.13.0. See [mgl-zig-example](https://git.dec05eba.com/mgl-zig-example/about) for an example on how to use this. @@ -37,12 +37,12 @@ pub fn build(b: *std.Build) void { "-Wextra", }, }); - lib.addIncludePath(.{ .path = "depends/mgl/include" }); + lib.addIncludePath(b.path("depends/mgl/include")); lib.linkSystemLibrary("x11"); lib.linkSystemLibrary("xrender"); lib.linkSystemLibrary("xrandr"); lib.linkLibC(); - lib.installHeadersDirectory(.{ .path = "depends/mgl/include" }, ".", .{}); + lib.installHeadersDirectory(b.path("depends/mgl/include"), ".", .{}); lib.want_lto = optimize != std.builtin.OptimizeMode.Debug; b.installArtifact(lib); |