18 lines
466 B
Zig
18 lines
466 B
Zig
const Builder = @import("std").build.Builder;
|
|
|
|
pub fn build(b: *Builder) void {
|
|
const opts = b.standardReleaseOptions();
|
|
|
|
const lib = b.addSharedLibrary("add", "add.zig", b.version(1, 0, 0));
|
|
lib.setBuildMode(opts);
|
|
|
|
const main = b.addExecutable("main", "main.zig");
|
|
main.setBuildMode(opts);
|
|
|
|
const run = main.run();
|
|
run.addArtifactArg(lib);
|
|
|
|
const test_step = b.step("test", "Test the program");
|
|
test_step.dependOn(&run.step);
|
|
}
|