Backlog/projects/build.zig.zon

27 lines
747 B
Plaintext

.{
.name = .MyProjects,
.version = "0.0.0",
.dependencies = .{
// Neonwood's /lib folder contains
// third party libraries.
//
// They can be directly accessed
//
// as well as any of the engine/ libraries
//
// in the general case though,
// engine libraries
.Backlog = .{ .path = "../" },
.SpirvReflect = .{ .path = "../lib/spirv-reflect-zig" },
.gameExtras = .{.path = "../extras/gameExtras"},
.videoplayer = .{.path = "../extras/videoplayer"},
.doomplayer = .{.path = "../extras/doomplayer"},
.bsp = .{.path = "../extras/bsp"},
},
.paths = .{
"",
},
.fingerprint = 0x14099f7390321175
}