first try baby

This commit is contained in:
2026-06-30 01:05:59 +03:00
commit 4a88203dfd
5 changed files with 259 additions and 0 deletions

22
build.zig Normal file
View File

@@ -0,0 +1,22 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const exe = b.addExecutable(.{
.name = "bukubukuchagama",
.root_module = b.createModule(.{
.root_source_file = b.path("main.zig"),
.target = target,
.optimize = optimize,
}),
});
b.installArtifact(exe);
const run_exe = b.addRunArtifact(exe);
const run_step = b.step("run", "Run the application");
run_step.dependOn(&run_exe.step);
}