You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
microzig/docs/tricks.adoc

15 lines
238 B
Plaintext

= Tips and Tricks
This document has some `build.zig` tricks for other pages to reference.
== Packaging and Paths
TODO
[source,zig]
----
fn root_dir() []const u8 {
return std.fs.path.dirname(@src().file) orelse unreachable;
}
----