zba/build.zig

88 lines
3.1 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 gdbstub = @import("lib/zba-gdbstub/build.zig");
const zgui = @import("lib/zgui/build.zig");
const nfd = @import("lib/nfd-zig/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
const min_ver = std.SemanticVersion.parse("0.11.0-dev.2168+322ace70f") catch return; // https://github.com/ziglang/zig/commit/322ace70f
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
exe.setMainPkgPath("."); // Necessary so that src/main.zig can embed example.toml
// Known Folders (%APPDATA%, XDG, etc.)
exe.addAnonymousModule("known_folders", .{ .source_file = .{ .path = "lib/known-folders/known-folders.zig" } });
// DateTime Library
exe.addAnonymousModule("datetime", .{ .source_file = .{ .path = "lib/zig-datetime/src/main.zig" } });
// Bitfield type from FlorenceOS: https://github.com/FlorenceOS/
exe.addAnonymousModule("bitfield", .{ .source_file = .{ .path = "lib/bitfield.zig" } });
2022-02-04 05:55:14 +00:00
// Argument Parsing Library
exe.addAnonymousModule("clap", .{ .source_file = .{ .path = "lib/zig-clap/clap.zig" } });
2022-01-08 02:46:17 +00:00
2022-09-25 22:01:31 +00:00
// TOML Library
exe.addAnonymousModule("toml", .{ .source_file = .{ .path = "lib/zig-toml/src/toml.zig" } });
2022-09-25 22:01:31 +00:00
// OpenGL 3.3 Bindings
exe.addAnonymousModule("gl", .{ .source_file = .{ .path = "lib/gl.zig" } });
// ZBA utility code
exe.addAnonymousModule("zba-util", .{ .source_file = .{ .path = "lib/zba-util/src/lib.zig" } });
2022-12-15 07:44:17 +00:00
// gdbstub
exe.addModule("gdbstub", gdbstub.getModule(b));
// NativeFileDialog(ue) Bindings
exe.linkLibrary(nfd.makeLib(b, target, optimize));
exe.addModule("nfd", nfd.getModule(b));
2022-12-15 07:44:17 +00:00
2022-01-08 02:46:17 +00:00
// Zig SDL Bindings: 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());
2023-01-01 09:42:02 +00:00
// Dear ImGui bindings
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
2021-12-29 21:09:00 +00:00
exe.install();
const run_cmd = exe.run();
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);
}