You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
const std = @import("std"); |
|
const mach = @import("mach"); |
|
const zmath = @import("zmath"); |
|
|
|
pub fn build(b: *std.Build) !void { |
|
const target = b.standardTargetOptions(.{}); |
|
const optimize = b.standardOptimizeOption(.{}); |
|
|
|
const mach_dep = b.dependency("mach", .{ |
|
.target = target, |
|
.optimize = optimize, |
|
// Only using mach.core, avoid pulling unnecessary dependencies. |
|
.core = true, |
|
}); |
|
const zigimg_dep = b.dependency("zigimg", .{ .target = target, .optimize = optimize }); |
|
const zmath_pkg = zmath.package(b, target, optimize, .{}); |
|
|
|
const app = try mach.CoreApp.init(b, mach_dep.builder, .{ |
|
.name = "zig-bloxel-game", |
|
.src = "src/main.zig", |
|
.target = target, |
|
.optimize = optimize, |
|
.deps = &.{ |
|
.{ .name = "zigimg", .module = zigimg_dep.module("zigimg") }, |
|
.{ .name = "zmath", .module = zmath_pkg.zmath }, |
|
}, |
|
}); |
|
if (b.args) |args| app.run.addArgs(args); |
|
|
|
const run_step = b.step("run", "Run the app"); |
|
run_step.dependOn(&app.run.step); |
|
|
|
const unit_tests = b.addTest(.{ |
|
.root_source_file = .{ .path = "src/main.zig" }, |
|
.target = target, |
|
.optimize = optimize, |
|
}); |
|
unit_tests.root_module.addImport("zmath", zmath_pkg.zmath); |
|
|
|
const run_unit_tests = b.addRunArtifact(unit_tests); |
|
const test_step = b.step("test", "Run unit tests"); |
|
test_step.dependOn(&run_unit_tests.step); |
|
}
|
|
|