xcb: c-translate
This commit is contained in:
21
packages/xcb/build.zig
Normal file
21
packages/xcb/build.zig
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
const std = @import("std");
|
||||||
|
|
||||||
|
pub fn build(b: *std.Build) void {
|
||||||
|
const target = b.standardTargetOptions(.{});
|
||||||
|
|
||||||
|
const mod = b.addModule("xcb", .{
|
||||||
|
.root_source_file = b.path("src/root.zig"),
|
||||||
|
.target = target,
|
||||||
|
});
|
||||||
|
|
||||||
|
mod.linkSystemLibrary("xcb", .{});
|
||||||
|
|
||||||
|
const mod_tests = b.addTest(.{
|
||||||
|
.root_module = mod,
|
||||||
|
});
|
||||||
|
|
||||||
|
const run_mod_tests = b.addRunArtifact(mod_tests);
|
||||||
|
|
||||||
|
const test_step = b.step("test", "Run tests");
|
||||||
|
test_step.dependOn(&run_mod_tests.step);
|
||||||
|
}
|
||||||
11
packages/xcb/build.zig.zon
Normal file
11
packages/xcb/build.zig.zon
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
.{
|
||||||
|
.name = .xcb,
|
||||||
|
.version = "0.0.0",
|
||||||
|
.minimum_zig_version = "0.16.0",
|
||||||
|
.paths = .{
|
||||||
|
"src",
|
||||||
|
"build.zig",
|
||||||
|
"build.zig.zon",
|
||||||
|
},
|
||||||
|
.fingerprint = 0x48cfd8ea06caab92,
|
||||||
|
}
|
||||||
1
packages/xcb/src/root.zig
Normal file
1
packages/xcb/src/root.zig
Normal file
@@ -0,0 +1 @@
|
|||||||
|
const std = @import("std");
|
||||||
6510
packages/xcb/src/xcb.zig
Normal file
6510
packages/xcb/src/xcb.zig
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user