zba/build.zig

74 lines
3.2 KiB
Zig
Raw Normal View History

2021-12-29 21:09:00 +00:00
const std = @import("std");
2022-11-30 03:10:29 +00:00
const builtin = @import("builtin");
2022-12-15 07:44:17 +00:00
2022-01-08 02:46:17 +00:00
const Sdk = @import("lib/SDL.zig/Sdk.zig");
2023-01-01 09:42:02 +00:00
const zgui = @import("lib/zgui/build.zig");
2023-12-15 08:35:33 +00:00
const gdbstub = @import("lib/zba-gdbstub/build.zig");
2021-12-29 21:09:00 +00:00
pub fn build(b: *std.Build) void {
2022-11-30 03:10:29 +00:00
// Minimum Zig Version
2023-07-21 03:52:03 +00:00
const min_ver = std.SemanticVersion.parse("0.11.0") catch return; // https://github.com/ziglang/zig/tree/0.11.0
2022-11-30 03:10:29 +00:00
if (builtin.zig_version.order(min_ver).compare(.lt)) {
std.log.err("{s}", .{b.fmt("Zig v{} does not meet the minimum version requirement. (Zig v{})", .{ builtin.zig_version, min_ver })});
std.os.exit(1);
}
2021-12-29 21:09:00 +00:00
const target = b.standardTargetOptions(.{});
2023-02-03 22:15:25 +00:00
const optimize = b.standardOptimizeOption(.{});
2021-12-29 21:09:00 +00:00
2023-02-03 22:15:25 +00:00
const exe = b.addExecutable(.{
.name = "zba",
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = optimize,
});
2023-07-21 03:52:03 +00:00
exe.main_pkg_path = .{ .path = "." }; // Necessary so that src/main.zig can embed example.toml
exe.addModule("known_folders", b.dependency("known-folders", .{}).module("known-folders")); // https://github.com/ziglibs/known-folders
exe.addModule("datetime", b.dependency("zig-datetime", .{}).module("zig-datetime")); // https://github.com/frmdstryr/zig-datetime
exe.addModule("clap", b.dependency("zig-clap", .{}).module("clap")); // https://github.com/Hejsil/zig-clap
exe.addModule("zba-util", b.dependency("zba-util", .{}).module("zba-util")); // https://git.musuka.dev/paoda/zba-util
exe.addModule("tomlz", b.dependency("tomlz", .{}).module("tomlz")); // https://github.com/mattyhall/tomlz
exe.addModule("arm32", b.dependency("arm32", .{}).module("arm32")); // https://git.musuka.dev/paoda/arm32
2023-12-15 08:35:33 +00:00
exe.addModule("gdbstub", gdbstub.module(b)); // https://git.musuka.dev/paoda/gdbstub
// https://github.com/fabioarnold/nfd-zig
const nfd_dep = b.dependency("nfd", .{ .target = target, .optimize = optimize });
exe.linkLibrary(nfd_dep.artifact("nfd"));
exe.addModule("nfd", nfd_dep.module("nfd"));
// https://github.com/MasterQ32/SDL.zig
2023-02-03 22:15:25 +00:00
const sdk = Sdk.init(b, null);
2022-01-08 02:46:17 +00:00
sdk.link(exe, .dynamic);
exe.addModule("sdl2", sdk.getNativeModule());
// https://git.musuka.dev/paoda/zgui
2023-03-27 04:06:19 +00:00
// .shared option should stay in sync with SDL.zig call above where true == .dynamic, and false == .static
const zgui_pkg = zgui.package(b, target, optimize, .{ .options = .{ .backend = .sdl2_opengl3, .shared = true } });
zgui_pkg.link(exe);
2023-01-01 09:42:02 +00:00
exe.addAnonymousModule("bitfield", .{ .source_file = .{ .path = "lib/bitfield.zig" } }); // https://github.com/FlorenceOS/
exe.addAnonymousModule("gl", .{ .source_file = .{ .path = "lib/gl.zig" } }); // https://github.com/MasterQ32/zig-opengl
b.installArtifact(exe);
2021-12-29 21:09:00 +00:00
const run_cmd = b.addRunArtifact(exe);
2021-12-29 21:09:00 +00:00
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);
2023-02-03 22:15:25 +00:00
const exe_tests = b.addTest(.{
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = optimize,
});
2021-12-29 21:09:00 +00:00
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&exe_tests.step);
}