74 lines
2.1 KiB
Zig
74 lines
2.1 KiB
Zig
|
const std = @import("std");
|
||
|
|
||
|
pub fn build(b: *std.Build) void {
|
||
|
const target = b.standardTargetOptions(.{
|
||
|
.whitelist = &[_]std.Target.Query{
|
||
|
std.Target.Query{ .cpu_arch = .aarch64, .os_tag = .macos },
|
||
|
std.Target.Query{ .cpu_arch = .x86_64, .os_tag = .linux },
|
||
|
},
|
||
|
});
|
||
|
|
||
|
// TODO
|
||
|
// Prefer small size binaries for optimization
|
||
|
const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .Debug });
|
||
|
|
||
|
const exe = b.addExecutable(.{
|
||
|
.name = "genius_deck",
|
||
|
.root_source_file = b.path("src/main.zig"),
|
||
|
.target = target,
|
||
|
.optimize = optimize,
|
||
|
});
|
||
|
// Add zap dependency
|
||
|
const zap = b.dependency("zap", .{
|
||
|
.target = target,
|
||
|
.optimize = optimize,
|
||
|
.openssl = false,
|
||
|
});
|
||
|
exe.root_module.addImport("zap", zap.module("zap"));
|
||
|
b.installArtifact(exe);
|
||
|
|
||
|
// Create Check step for zls
|
||
|
const exe_check = b.addExecutable(.{
|
||
|
.name = "zerver",
|
||
|
.root_source_file = b.path("src/main.zig"),
|
||
|
.target = target,
|
||
|
.optimize = optimize,
|
||
|
});
|
||
|
exe_check.root_module.addImport("zap", zap.module("zap"));
|
||
|
const check = b.step("check", "Check if project compiles, used by Zig Language Server");
|
||
|
check.dependOn(&exe_check.step);
|
||
|
|
||
|
// Create Run Step
|
||
|
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);
|
||
|
|
||
|
// Create Test Step
|
||
|
const lib_unit_tests = b.addTest(.{
|
||
|
.root_source_file = b.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 = b.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);
|
||
|
}
|