summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorGravatar Jose Colon Rodriguez2024-02-18 23:19:16 -0400
committerGravatar Jose Colon Rodriguez2024-02-18 23:19:16 -0400
commitbf66906dcf8817d1b4341fd7a5fdbefe972e1cbb (patch)
treea78b30c2f380cda174cf1dcf9d15342c2e445ce0 /build.zig
parentcenter, padLeft, padRight, and wrap (diff)
downloadzg-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.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/build.zig b/build.zig
index 4413276..3d4c98f 100644
--- a/build.zig
+++ b/build.zig
@@ -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);