chore: add zig-toml dependency
This commit is contained in:
parent
86d2224cfc
commit
0204eb6f94
|
@ -10,3 +10,6 @@
|
|||
[submodule "lib/zig-datetime"]
|
||||
path = lib/zig-datetime
|
||||
url = https://github.com/frmdstryr/zig-datetime
|
||||
[submodule "lib/zig-toml"]
|
||||
path = lib/zig-toml
|
||||
url = https://github.com/aeronavery/zig-toml
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 5dfa919e03b446c66b295c04bef9bdecabd4276f
|
Loading…
Reference in New Issue