summaryrefslogtreecommitdiffhomepage
path: root/src/build.zig
diff options
context:
space:
mode:
authorstar-tek-mb <[email protected]>2023-05-01 14:02:34 +0500
committerGitHub <[email protected]>2023-05-01 11:02:34 +0200
commited2caa12775da95d3e19ce42dccdca4a0ba8f8a0 (patch)
tree1f4e9b51f4ef28d6c43fc4c83f0fd03431844b05 /src/build.zig
parent59596e4266aa19692dcf29e3e0c4b3e7ffd50598 (diff)
downloadraylib-ed2caa12775da95d3e19ce42dccdca4a0ba8f8a0.tar.gz
raylib-ed2caa12775da95d3e19ce42dccdca4a0ba8f8a0.zip
fix for latest zig master (#3037)
Diffstat (limited to 'src/build.zig')
-rw-r--r--src/build.zig8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/build.zig b/src/build.zig
index 84684fef..b39f23ed 100644
--- a/src/build.zig
+++ b/src/build.zig
@@ -90,7 +90,7 @@ pub fn addRaylib(b: *std.Build, target: std.zig.CrossTarget, optimize: std.built
const cache_include = std.fs.path.join(b.allocator, &.{ b.sysroot.?, "cache", "sysroot", "include" }) catch @panic("Out of memory");
defer b.allocator.free(cache_include);
- var dir = std.fs.openDirAbsolute(cache_include, std.fs.Dir.OpenDirOptions{.access_sub_paths = true, .no_follow = true}) catch @panic("No emscripten cache. Generate it!");
+ var dir = std.fs.openDirAbsolute(cache_include, std.fs.Dir.OpenDirOptions{ .access_sub_paths = true, .no_follow = true }) catch @panic("No emscripten cache. Generate it!");
dir.close();
raylib.addIncludePath(cache_include);
@@ -115,11 +115,11 @@ pub fn build(b: *std.Build) void {
const optimize = b.standardOptimizeOption(.{});
const lib = addRaylib(b, target, optimize);
- lib.setOutputDir(srcdir);
- lib.install();
+ lib.installHeader("src/raylib.h", "raylib.h");
+ b.installArtifact(lib);
}
-const srcdir = struct{
+const srcdir = struct {
fn getSrcDir() []const u8 {
return std.fs.path.dirname(@src().file).?;
}