Compare commits

..

No commits in common. "2dd23a7580590f8bd1b8cafc126f96b3197b33f1" and "62f118a18c8d4028de5ec4f16f23b6e802b5ba50" have entirely different histories.

3 changed files with 4 additions and 2 deletions

View file

@ -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,
});

View file

@ -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(.{});

View file

@ -7,7 +7,6 @@
"build.zig",
"build.zig.zon",
"src",
"anyascii",
"README.md",
},
}