reorganize omt to separate folder (wip)

This commit is contained in:
2025-10-21 22:16:46 +03:00
parent bc222b77b7
commit af0109502c
10 changed files with 169 additions and 18 deletions

View File

@@ -100,7 +100,7 @@ pub fn build(b: *std.Build) void {
const sender_exe = b.addExecutable(.{
.name = "omtoy-sender",
.root_module = b.createModule(.{
.root_source_file = b.path("src/sender.zig"),
.root_source_file = b.path("utils/sender.zig"),
.target = target,
.optimize = optimize,
}),
@@ -130,7 +130,7 @@ pub fn build(b: *std.Build) void {
const receiver_exe = b.addExecutable(.{
.name = "omtoy-receiver",
.root_module = b.createModule(.{
.root_source_file = b.path("src/receiver.zig"),
.root_source_file = b.path("utils/receiver.zig"),
.target = target,
.optimize = optimize,
}),