From a3f01eb7d4b2050d81c5b76fe9e3c069a84cf17c Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 19 Aug 2023 14:04:31 +0200 Subject: Initial commit --- build.zig | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 build.zig (limited to 'build.zig') 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 -- cgit v1.2.3