-
Notifications
You must be signed in to change notification settings - Fork 104
/
build.zig.zon
40 lines (37 loc) · 1.56 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
.{
.name = "microzig",
.version = "0.13.0",
.minimum_zig_version = "0.13.0",
.dependencies = .{
.@"build-internals" = .{ .path = "build-internals" },
.core = .{ .path = "core" },
.drivers = .{ .path = "drivers" },
// tools
.@"tools/regz" = .{ .path = "tools/regz" },
.@"tools/uf2" = .{ .path = "tools/uf2" },
// ports
// .@"port/espressif/esp" = .{ .path = "port/espressif/esp", .lazy = true },
.@"port/gigadevice/gd32" = .{ .path = "port/gigadevice/gd32", .lazy = true },
.@"port/microchip/atsam" = .{ .path = "port/microchip/atsam", .lazy = true },
.@"port/microchip/avr" = .{ .path = "port/microchip/avr", .lazy = true },
.@"port/nordic/nrf5x" = .{ .path = "port/nordic/nrf5x", .lazy = true },
.@"port/nxp/lpc" = .{ .path = "port/nxp/lpc", .lazy = true },
.@"port/raspberrypi/rp2xxx" = .{ .path = "port/raspberrypi/rp2xxx", .lazy = true },
.@"port/stmicro/stm32" = .{ .path = "port/stmicro/stm32", .lazy = true },
.@"port/wch/ch32v" = .{ .path = "port/wch/ch32v", .lazy = true },
// used for creating package tarballs
.boxzer = .{
.url = "git+https://github.com/mattnite/boxzer#a23c802f15deb848e6019580c01ba5a342ce7bc9",
.hash = "12201941f33c88dfebeb894d6693b94501cca0d7ce1f3e268fe2825723085ab93ba7",
},
},
.paths = .{
"README.md",
"build.zig",
"build.zig.zon",
"LICENSE",
"design",
"docs",
"tools/generate_linker_script.zig",
},
}