diff options
| author | 2025-04-30 12:02:17 -0400 | |
|---|---|---|
| committer | 2025-04-30 12:02:17 -0400 | |
| commit | 7a212f5ec5aabf016d17d3ed28649e7982b810ef (patch) | |
| tree | c6b06b0a0afb0ed2ba18f147d9ee200e5eee09a1 /build.zig | |
| parent | Factor out 'Data' for grapheme and DisplayWidth (diff) | |
| download | zg-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.zig | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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); |