Backlog/depot/build.zig.zon

38 lines
1.0 KiB
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"},
.zphysics = .{.path = "../lib/zphysics"},
.spng = .{ .path = "../lib/spng" },
.ozz = .{ .path = "../lib/ozz" },
.sdl3 = .{ .path = "../lib/sdl3" },
.miniaudio = .{ .path = "../lib/miniaudio" },
.lua = .{ .path = "../lib/lua" },
.enet = .{ .path = "../lib/enet" },
},
.paths = .{
"",
},
}