diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-08-19 14:04:31 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-08-19 14:04:31 +0200 |
commit | a3f01eb7d4b2050d81c5b76fe9e3c069a84cf17c (patch) | |
tree | e3fcac5bd7d1d017dbf604bcd94d44ffebbc1457 /build.zig |
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/build.zig b/build.zig new file mode 100644 index 0000000..5ecfc3d --- /dev/null +++ b/build.zig @@ -0,0 +1,47 @@ +const std = @import("std"); + +pub fn build(b: *std.Build) void { + const target = b.standardTargetOptions(.{}); + const optimize = b.standardOptimizeOption(.{}); + + const exe = b.addExecutable(.{ + .name = "html-tree-zig-example", + .root_source_file = .{ .path = "src/main.zig" }, + .target = target, + .optimize = optimize, + }); + + const libHtmlTree = buildHtmlTree(b, &target, optimize); + exe.linkLibrary(libHtmlTree); + exe.linkLibC(); + exe.addIncludePath(.{ .path = "depends/html-tree/depends/html-parser/include" }); + exe.addIncludePath(.{ .path = "depends/html-tree/include" }); + + 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); +} + +fn buildHtmlTree(b: *std.Build, target: *const std.zig.CrossTarget, optimize: std.builtin.OptimizeMode) *std.Build.Step.Compile { + const lib = b.addStaticLibrary(.{ + .name = "html-tree", + .target = target.*, + .optimize = optimize, + }); + + lib.addCSourceFiles(&.{ + "depends/html-tree/depends/html-parser/src/HtmlParser.c", + "depends/html-tree/src/HtmlTree.c", + }, &.{}); + + lib.addIncludePath(.{ .path = "depends/html-tree/depends/html-parser/include" }); + lib.linkLibC(); + return lib; +}
\ No newline at end of file |