zig/test/standalone/static_c_lib/build.zig
Andrew Kelley b735764898
different array literal syntax when inferring the size
old syntax:  []i32{1, 2, 3}
new syntax: [_]i32{1, 2, 3}

closes #1797
2019-06-09 19:26:32 -04:00

19 lines
514 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.addIncludeDir(".");
const test_exe = b.addTest("foo.zig");
test_exe.setBuildMode(mode);
test_exe.linkLibrary(foo);
test_exe.addIncludeDir(".");
const test_step = b.step("test", "Test it");
test_step.dependOn(&test_exe.step);
}