We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build.zig
const std = @import("std"); pub fn build(b: *std.Build) void { const target = b.standardTargetOptions(.{}); const optimize = b.standardOptimizeOption(.{}); const lib = b.addStaticLibrary(.{ .name = "vanity-sniper", .root_source_file = .{ .path = "src/root.zig" }, .target = target, .optimize = optimize, }); b.installArtifact(lib); const exe = b.addExecutable(.{ .name = "vanity-sniper", .root_source_file = .{ .path = "src/main.zig" }, .target = target, .optimize = optimize, }); const ws = b.dependency("ws", .{}); exe.linkLibrary(ws.artifact("ws")); exe.addModule("ws", ws.module("ws")); 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); const lib_unit_tests = b.addTest(.{ .root_source_file = .{ .path = "src/root.zig" }, .target = target, .optimize = optimize, }); const run_lib_unit_tests = b.addRunArtifact(lib_unit_tests); const exe_unit_tests = b.addTest(.{ .root_source_file = .{ .path = "src/main.zig" }, .target = target, .optimize = optimize, }); const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests); const test_step = b.step("test", "Run unit tests"); test_step.dependOn(&run_lib_unit_tests.step); test_step.dependOn(&run_exe_unit_tests.step); }
build.zig.zon
.{ .name = "vanity-sniper", .version = "0.0.0", .dependencies = .{ .ws = .{ .path = "lib/ws" }, }, .paths = .{ "src", }, }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
build.zig
build.zig.zon
The text was updated successfully, but these errors were encountered: