summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorGravatar Sam Atman2025-05-12 15:22:37 -0400
committerGravatar Sam Atman2025-05-15 15:31:16 -0400
commitcf8d8fe5d640511f6c4134fdaa36e930232ca7da (patch)
tree410a3c5195ea0780b637f740ebcb6e80e63db09c /build.zig
parentImplement Word iterator (diff)
downloadzg-cf8d8fe5d640511f6c4134fdaa36e930232ca7da.tar.gz
zg-cf8d8fe5d640511f6c4134fdaa36e930232ca7da.tar.xz
zg-cf8d8fe5d640511f6c4134fdaa36e930232ca7da.zip
Begin conformance test
I'm not sure the details of this strategy can actually be made to work. But, something can.
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 f89e90c..387b4c3 100644
--- a/build.zig
+++ b/build.zig
@@ -471,6 +471,7 @@ pub fn build(b: *std.Build) void {
471 }); 471 });
472 unicode_tests.root_module.addImport("Graphemes", graphemes); 472 unicode_tests.root_module.addImport("Graphemes", graphemes);
473 unicode_tests.root_module.addImport("Normalize", norm); 473 unicode_tests.root_module.addImport("Normalize", norm);
474 unicode_tests.root_module.addImport("WordBreak", word_break);
474 475
475 const run_unicode_tests = b.addRunArtifact(unicode_tests); 476 const run_unicode_tests = b.addRunArtifact(unicode_tests);
476 477