aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2023-08-19 14:13:06 +0200
committerdec05eba <dec05eba@protonmail.com>2023-08-19 14:13:06 +0200
commit908d2ba2bc4a2c7f18e22df26cda8b619725e853 (patch)
tree431f840a0df524b33b5c721c69b69e6759cb0190 /build.zig
Initial commit
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig50
1 files changed, 50 insertions, 0 deletions
diff --git a/build.zig b/build.zig
new file mode 100644
index 0000000..301212c
--- /dev/null
+++ b/build.zig
@@ -0,0 +1,50 @@
+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-search-zig-example",
+ .root_source_file = .{ .path = "src/main.zig" },
+ .target = target,
+ .optimize = optimize,
+ });
+
+ const libHtmlTree = buildHtmlSearch(b, &target, optimize);
+ exe.linkLibrary(libHtmlTree);
+ exe.linkLibC();
+ exe.addIncludePath(.{ .path = "depends/html-search/depends/html-parser/include" });
+ exe.addIncludePath(.{ .path = "depends/html-search/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 buildHtmlSearch(b: *std.Build, target: *const std.zig.CrossTarget, optimize: std.builtin.OptimizeMode) *std.Build.Step.Compile {
+ const lib = b.addStaticLibrary(.{
+ .name = "html-search",
+ .target = target.*,
+ .optimize = optimize,
+ });
+
+ lib.addCSourceFiles(&.{
+ "depends/html-search/depends/html-parser/src/HtmlParser.c",
+ "depends/html-search/src/HtmlSearch.c",
+ "depends/html-search/src/XpathTokenizer.c",
+ "depends/html-search/src/XpathParser.c",
+ "depends/html-search/src/NodeSearch.c",
+ }, &.{});
+
+ lib.addIncludePath(.{ .path = "depends/html-search/depends/html-parser/include" });
+ lib.linkLibC();
+ return lib;
+} \ No newline at end of file