zba/build.zig

68 lines
2.4 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-01-08 02:46:17 +00:00
const Sdk = @import("lib/SDL.zig/Sdk.zig");
2021-12-29 21:09:00 +00:00
pub fn build(b: *std.build.Builder) void {
2022-11-30 03:10:29 +00:00
// Minimum Zig Version
2023-02-07 23:52:16 +00:00
const min_ver = std.SemanticVersion.parse("0.11.0-dev.1580+a5b34a61a") catch return; // https://github.com/ziglang/zig/commit/a5b34a61a
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/util/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" } });
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());
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);
}