26 lines
799 B
Zig
26 lines
799 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
|
|
// 1. Define the module so other projects can import it
|
|
_ = b.addModule("dimal", .{
|
|
.root_source_file = b.path("src/main.zig"),
|
|
});
|
|
|
|
// 2. Keep the test setup
|
|
const exe_tests = b.addTest(.{
|
|
.root_module = b.createModule(.{
|
|
.root_source_file = b.path("src/main.zig"),
|
|
.target = target,
|
|
.optimize = optimize,
|
|
}),
|
|
.test_runner = .{ .path = b.path("test_runner.zig"), .mode = .simple },
|
|
});
|
|
|
|
const run_exe_tests = b.addRunArtifact(exe_tests);
|
|
const test_step = b.step("test", "Run tests");
|
|
test_step.dependOn(&run_exe_tests.step);
|
|
}
|