We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a44987 commit 39c5908Copy full SHA for 39c5908
build.zig
@@ -14,6 +14,11 @@ pub fn build(b: *std.Build) void {
14
lib.linkLibC();
15
lib.linkSystemLibrary("asound");
16
17
+ _ = b.addModule("zig-alsa", .{
18
+ .source_file = .{ .path = "src/main.zig" },
19
+ .dependencies = &.{},
20
+ });
21
+
22
b.installArtifact(lib);
23
24
const main_tests = b.addTest(.{
build.zig.zon
@@ -0,0 +1,10 @@
1
+.{
2
+ .name = "zig-alsa",
3
+ .version = "0.0.1",
4
+ .paths = .{
5
+ "src/",
6
+ "build.zig",
7
+ "build.zig.zon",
8
+ "README.md",
9
+ },
10
+}
0 commit comments