mv root -> stt

This commit is contained in:
Emil Lerch 2025-09-10 17:03:49 -07:00
parent ce872d85b1
commit cafeeaf478
Signed by: lobo
GPG key ID: A7B62D657EF764F8
4 changed files with 4 additions and 4 deletions

View file

@ -28,7 +28,7 @@ pub fn build(b: *std.Build) void {
.name = "stt",
.linkage = .static,
.root_module = b.createModule(.{
.root_source_file = b.path("src/root.zig"),
.root_source_file = b.path("src/stt.zig"),
.target = target,
.optimize = optimize,
.link_libc = true,
@ -79,7 +79,7 @@ pub fn build(b: *std.Build) void {
// Creates a step for unit testing the library
const lib_unit_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("src/root.zig"),
.root_source_file = b.path("src/stt.zig"),
.target = target,
.optimize = optimize,
.link_libc = true,

View file

@ -5,7 +5,7 @@
const std = @import("std");
const builtin = @import("builtin");
const stt = @import("root.zig");
const stt = @import("stt.zig");
/// Global flag for signal handling
var should_exit = std.atomic.Value(bool).init(false);

View file

@ -8,7 +8,7 @@
const std = @import("std");
const testing = std.testing;
const stt = @import("root.zig");
const stt = @import("stt.zig");
// Test allocator for memory leak detection
var test_allocator = std.testing.allocator;