const std = @import("std"); pub fn build(b: *std.Build) void { const target = b.standardTargetOptions(.{}); const optimize = b.standardOptimizeOption(.{}); const libhttp = b.addLibrary(.{ .name = "http", .linkage = .static, .root_module = b.createModule(.{ .root_source_file = b.path("http.zig"), .target = target, .optimize = optimize, }), }); const exe = b.addExecutable(.{ .name = "coinvane", .root_module = b.createModule(.{ .root_source_file = b.path("coinvane.zig"), .target = target, .optimize = optimize, }), }); exe.root_module.linkLibrary(libhttp); b.installArtifact(exe); const run_exe = b.addRunArtifact(exe); const run_step = b.step("run", "Run the application"); run_step.dependOn(&run_exe.step); }