chore: add zig-toml dependency

This commit is contained in:
2022-09-25 19:01:31 -03:00
parent 86d2224cfc
commit 0204eb6f94
3 changed files with 7 additions and 0 deletions

View File

@@ -28,6 +28,9 @@ pub fn build(b: *std.build.Builder) void {
// Argument Parsing Library
exe.addPackagePath("clap", "lib/zig-clap/clap.zig");
// TOML Library
exe.addPackagePath("toml", "lib/zig-toml/src/toml.zig");
// Zig SDL Bindings: https://github.com/MasterQ32/SDL.zig
const sdk = Sdk.init(b);
sdk.link(exe, .dynamic);