Compare commits
No commits in common. "2dd23a7580590f8bd1b8cafc126f96b3197b33f1" and "62f118a18c8d4028de5ec4f16f23b6e802b5ba50" have entirely different histories.
2dd23a7580
...
62f118a18c
3 changed files with 4 additions and 2 deletions
|
@ -42,7 +42,7 @@ In `build.zig`:
|
|||
|
||||
```zig
|
||||
// Add anyascii.zig dependency.
|
||||
const anyascii = b.dependency("anyascii.zig", .{
|
||||
const anyascii = b.dependency("anyascii", .{
|
||||
.target = target,
|
||||
.optimize = optimize,
|
||||
});
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
const std = @import("std");
|
||||
|
||||
// Although this function looks imperative, note that its job is to
|
||||
// declaratively construct a build graph that will be executed by an external
|
||||
// runner.
|
||||
pub fn build(b: *std.Build) void {
|
||||
const target = b.standardTargetOptions(.{});
|
||||
const optimize = b.standardOptimizeOption(.{});
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
"build.zig",
|
||||
"build.zig.zon",
|
||||
"src",
|
||||
"anyascii",
|
||||
"README.md",
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue