Update project_setup.sh to work with zig 0.13.0 (#105)
This commit is contained in:
parent
ad994ac135
commit
e09c34d64d
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ pub fn build(b: *std.Build) !void {
|
|||
return;
|
||||
}
|
||||
|
||||
const exe = b.addExecutable(.{ .name = "'$PROJECT_NAME'", .root_source_file = .{ .path = "src/main.zig" }, .optimize = optimize, .target = target });
|
||||
const exe = b.addExecutable(.{ .name = "'$PROJECT_NAME'", .root_source_file = b.path("src/main.zig"), .optimize = optimize, .target = target });
|
||||
|
||||
exe.linkLibrary(raylib_artifact);
|
||||
exe.root_module.addImport("raylib", raylib);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue