summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorGravatar Sam Atman2025-04-30 12:02:17 -0400
committerGravatar Sam Atman2025-04-30 12:02:17 -0400
commit7a212f5ec5aabf016d17d3ed28649e7982b810ef (patch)
treec6b06b0a0afb0ed2ba18f147d9ee200e5eee09a1 /build.zig
parentFactor out 'Data' for grapheme and DisplayWidth (diff)
downloadzg-7a212f5ec5aabf016d17d3ed28649e7982b810ef.tar.gz
zg-7a212f5ec5aabf016d17d3ed28649e7982b810ef.tar.xz
zg-7a212f5ec5aabf016d17d3ed28649e7982b810ef.zip
grapheme now Graphemes, Data files gone
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index 3aeccd1..2d88ab9 100644
--- a/build.zig
+++ b/build.zig
@@ -193,7 +193,7 @@ pub fn build(b: *std.Build) void {
193 193
194 // Graphemes 194 // Graphemes
195 const graphemes = b.addModule("Graphemes", .{ 195 const graphemes = b.addModule("Graphemes", .{
196 .root_source_file = b.path("src/grapheme.zig"), 196 .root_source_file = b.path("src/Graphemes.zig"),
197 .target = target, 197 .target = target,
198 .optimize = optimize, 198 .optimize = optimize,
199 }); 199 });
@@ -455,7 +455,7 @@ pub fn build(b: *std.Build) void {
455 .target = target, 455 .target = target,
456 .optimize = optimize, 456 .optimize = optimize,
457 }); 457 });
458 unicode_tests.root_module.addImport("grapheme", graphemes); 458 unicode_tests.root_module.addImport("Graphemes", graphemes);
459 unicode_tests.root_module.addImport("Normalize", norm); 459 unicode_tests.root_module.addImport("Normalize", norm);
460 460
461 const run_unicode_tests = b.addRunArtifact(unicode_tests); 461 const run_unicode_tests = b.addRunArtifact(unicode_tests);