building zig tutorial

This commit is contained in:
Filipriec
2026-03-07 09:46:09 +01:00
parent d01cb27daa
commit 54237c8ade
5 changed files with 33 additions and 1 deletions

19
build.zig Normal file
View File

@@ -0,0 +1,19 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const exe = b.addExecutable(.{
.name = "zig-learn",
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
});
b.installArtifact(exe);
const run_cmd = b.addRunArtifact(exe);
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
}