mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
3f341bdc26
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.
19 lines
517 B
Zig
19 lines
517 B
Zig
const Builder = @import("std").build.Builder;
|
|
|
|
pub fn build(b: *Builder) void {
|
|
const mode = b.standardReleaseOptions();
|
|
|
|
const foo = b.addStaticLibrary("foo", null);
|
|
foo.addCSourceFile("foo.c", &[_][]const u8{});
|
|
foo.setBuildMode(mode);
|
|
foo.addIncludePath(".");
|
|
|
|
const test_exe = b.addTest("foo.zig");
|
|
test_exe.setBuildMode(mode);
|
|
test_exe.linkLibrary(foo);
|
|
test_exe.addIncludePath(".");
|
|
|
|
const test_step = b.step("test", "Test it");
|
|
test_step.dependOn(&test_exe.step);
|
|
}
|