Attempt at making a bloxel game in Zig using Mach and Flecs
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.

34 lines
1002 B

7 months ago
const std = @import("std");
const mach_core = @import("mach_core");
7 months ago
pub fn build(b: *std.Build) !void {
7 months ago
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});
const mach_core_dep = b.dependency("mach_core", .{
.target = target,
.optimize = optimize,
});
const app = try mach_core.App.init(b, mach_core_dep.builder, .{
7 months ago
.name = "zig-bloxel-game",
.src = "src/main.zig",
7 months ago
.target = target,
.optimize = optimize,
.deps = &.{},
7 months ago
});
if (b.args) |args| app.run.addArgs(args);
7 months ago
const run_step = b.step("run", "Run the app");
run_step.dependOn(&app.run.step);
7 months ago
const unit_tests = b.addTest(.{
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = optimize,
});
const run_unit_tests = b.addRunArtifact(unit_tests);
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_unit_tests.step);
}