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");
|
2021-12-29 21:09:00 +00:00
|
|
|
|
2023-03-27 21:22:07 +00:00
|
|
|
pub fn build(b: *std.Build) void {
|
2022-11-30 03:10:29 +00:00
|
|
|
// Minimum Zig Version
|
2023-06-21 23:16:01 +00:00
|
|
|
const min_ver = std.SemanticVersion.parse("0.11.0-dev.3395+1e7dcaa3a") catch return; // https://github.com/ziglang/zig/commit/34865d693
|
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,
|
|
|
|
});
|
2021-12-29 21:09:00 +00:00
|
|
|
|
2022-10-21 07:39:16 +00:00
|
|
|
exe.setMainPkgPath("."); // Necessary so that src/main.zig can embed example.toml
|
2022-09-23 08:21:09 +00:00
|
|
|
|
2023-06-19 16:14:21 +00:00
|
|
|
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("gdbstub", b.dependency("zba-gdbstub", .{}).module("gdbstub")); // https://git.musuka.dev/paoda/zba-gdbstub
|
|
|
|
exe.addModule("zba-util", b.dependency("zba-util", .{}).module("zba-util")); // https://git.musuka.dev/paoda/zba-util
|
2023-06-21 22:59:59 +00:00
|
|
|
exe.addModule("tomlz", b.dependency("tomlz", .{}).module("tomlz")); // https://github.com/mattyhall/tomlz
|
2023-06-25 23:56:37 +00:00
|
|
|
exe.addModule("arm32", b.dependency("arm32", .{}).module("arm32")); // https://git.musuka.dev/paoda/arm32
|
2022-01-02 19:19:09 +00:00
|
|
|
|
2023-06-19 16:14:21 +00:00
|
|
|
// 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"));
|
2022-09-16 12:32:52 +00:00
|
|
|
|
2023-06-19 16:14:21 +00:00
|
|
|
// 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);
|
2023-02-07 22:00:06 +00:00
|
|
|
exe.addModule("sdl2", sdk.getNativeModule());
|
2022-01-02 19:19:09 +00:00
|
|
|
|
2023-06-19 16:14:21 +00:00
|
|
|
// 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 } });
|
2023-03-20 01:47:56 +00:00
|
|
|
zgui_pkg.link(exe);
|
2023-01-01 09:42:02 +00:00
|
|
|
|
2023-06-19 16:14:21 +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
|
|
|
|
|
2023-04-14 03:14:31 +00:00
|
|
|
b.installArtifact(exe);
|
2021-12-29 21:09:00 +00:00
|
|
|
|
2023-04-14 03:14:31 +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);
|
|
|
|
}
|