forked from biom4st3r/microzig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig.zon
45 lines (42 loc) · 1.98 KB
/
build.zig.zon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
.{
.name = "microzig",
.version = "0.12.1",
.dependencies = .{
// packages within the monorepo so that others can reach them
.build = .{ .path = "build" },
.@"build/definitions" = .{ .path = "build/definitions" },
.core = .{ .path = "core" },
.@"tools/regz" = .{ .path = "tools/regz" },
.@"tools/uf2" = .{ .path = "tools/uf2" },
.@"bsp/nordic/nrf5x" = .{ .path = "bsp/nordic/nrf5x" },
.@"bsp/nxp/lpc" = .{ .path = "bsp/nxp/lpc" },
.@"bsp/microchip/atsam" = .{ .path = "bsp/microchip/atsam" },
.@"bsp/microchip/avr" = .{ .path = "bsp/microchip/avr" },
.@"bsp/gigadevice/gd32" = .{ .path = "bsp/gigadevice/gd32" },
.@"bsp/stmicro/stm32" = .{ .path = "bsp/stmicro/stm32" },
.@"bsp/espressif/esp" = .{ .path = "bsp/espressif/esp" },
.@"bsp/raspberrypi/rp2040" = .{ .path = "bsp/raspberrypi/rp2040" },
// examples so that we can build them all in one go
.@"examples/nordic/nrf5x" = .{ .path = "examples/nordic/nrf5x" },
.@"examples/nxp/lpc" = .{ .path = "examples/nxp/lpc" },
.@"examples/microchip/atsam" = .{ .path = "examples/microchip/atsam" },
.@"examples/microchip/avr" = .{ .path = "examples/microchip/avr" },
.@"examples/gigadevice/gd32" = .{ .path = "examples/gigadevice/gd32" },
.@"examples/stmicro/stm32" = .{ .path = "examples/stmicro/stm32" },
.@"examples/espressif/esp" = .{ .path = "examples/espressif/esp" },
.@"examples/raspberrypi/rp2040" = .{ .path = "examples/raspberrypi/rp2040" },
// used for creating package tarballs
.boxzer = .{
.url = "https://github.com/mattnite/boxzer/archive/74f17daa97f6861c31b30a5070136216c08eb39b.tar.gz",
.hash = "1220a14c01a66c023d8944dc672edd5121f98f82196fefbc09a13bcadb96e1c8e7f1",
},
},
.paths = .{
"README.md",
"build.zig",
"build.zig.zon",
"LICENSE",
"design",
"docs",
},
}