diff options
| author | 2024-02-18 23:19:16 -0400 | |
|---|---|---|
| committer | 2024-02-18 23:19:16 -0400 | |
| commit | bf66906dcf8817d1b4341fd7a5fdbefe972e1cbb (patch) | |
| tree | a78b30c2f380cda174cf1dcf9d15342c2e445ce0 /build.zig | |
| parent | center, padLeft, padRight, and wrap (diff) | |
| download | zg-bf66906dcf8817d1b4341fd7a5fdbefe972e1cbb.tar.gz zg-bf66906dcf8817d1b4341fd7a5fdbefe972e1cbb.tar.xz zg-bf66906dcf8817d1b4341fd7a5fdbefe972e1cbb.zip | |
Tried SIMD lower/upper string. Slower than linear.
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -76,6 +76,7 @@ pub fn build(b: *std.Build) void { | |||
| 76 | .optimize = optimize, | 76 | .optimize = optimize, |
| 77 | }); | 77 | }); |
| 78 | exe.root_module.addImport("ziglyph", ziglyph.module("ziglyph")); | 78 | exe.root_module.addImport("ziglyph", ziglyph.module("ziglyph")); |
| 79 | exe.root_module.addImport("ascii", ascii); | ||
| 79 | exe.root_module.addImport("code_point", code_point); | 80 | exe.root_module.addImport("code_point", code_point); |
| 80 | exe.root_module.addImport("grapheme", grapheme); | 81 | exe.root_module.addImport("grapheme", grapheme); |
| 81 | exe.root_module.addImport("display_width", display_width); | 82 | exe.root_module.addImport("display_width", display_width); |