initial commit
Zig Project Action / Lint, Spell-check and test zig project (push) Has been cancelled

based on sources of https://github.com/noahbald/noe which are MIT-licensed
This commit is contained in:
2026-06-06 20:48:35 +02:00
parent d2836931a7
commit ae666cb436
12 changed files with 2116 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
const std = @import("std");
pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const mod = b.addModule("rope", .{
.root_source_file = b.path("src/root.zig"),
.target = target,
.optimize = optimize,
});
const mod_tests = b.addTest(.{
.root_module = mod,
});
const run_mod_tests = b.addRunArtifact(mod_tests);
const test_step = b.step("test", "Run tests");
test_step.dependOn(&run_mod_tests.step);
}