diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-08-19 23:54:53 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-08-19 23:57:56 +0200 |
commit | cb636288cdad210eaef62ea0ebed9e4ae154a7fc (patch) | |
tree | acf95dcec16116fc752aba2b499663e63fb8ca68 /build.zig |
initial commit
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/build.zig b/build.zig new file mode 100644 index 0000000..63a7964 --- /dev/null +++ b/build.zig @@ -0,0 +1,34 @@ +const std = @import("std"); + +pub fn build(b: *std.Build) void { + const target = b.standardTargetOptions(.{}); + const optimize = b.standardOptimizeOption(.{}); + + const exe = b.addExecutable(.{ + .name = "xcb-zig-example", + .root_source_file = .{ .path = "src/main.zig" }, + .target = target, + .optimize = optimize, + }); + + const xcb_dep = b.anonymousDependency("depends/xcb-zig", @import("depends/xcb-zig/build.zig"), .{ + .target = target, + .optimize = optimize, + }); + + exe.linkLibrary(xcb_dep.artifact("xcb-zig")); + exe.strip = optimize != std.builtin.OptimizeMode.Debug; + exe.want_lto = optimize != std.builtin.OptimizeMode.Debug; + exe.single_threaded = true; + + b.installArtifact(exe); + + const run_cmd = b.addRunArtifact(exe); + run_cmd.step.dependOn(b.getInstallStep()); + if (b.args) |args| { + run_cmd.addArgs(args); + } + + const run_step = b.step("run", "Run the app"); + run_step.dependOn(&run_cmd.step); +} |