zig/test/standalone/issue_9812/build.zig
Jonathan Marler 3f341bdc26
Normalize some build function names
An attempt to normalize some of the function names in build.zig.  Normalize add*Dir to add*Path.  Also use "Library" instead of the "Lib" abbreviation.

The PR does not remove the old names, only adds the new normalized ones to faciliate a transition period.
2022-01-24 20:15:32 +02:00

17 lines
486 B
Zig

const std = @import("std");
pub fn build(b: *std.build.Builder) !void {
const mode = b.standardReleaseOptions();
const zip_add = b.addTest("main.zig");
zip_add.setBuildMode(mode);
zip_add.addCSourceFile("vendor/kuba-zip/zip.c", &[_][]const u8{
"-std=c99",
"-fno-sanitize=undefined",
});
zip_add.addIncludePath("vendor/kuba-zip");
zip_add.linkLibC();
const test_step = b.step("test", "Test it");
test_step.dependOn(&zip_add.step);
}