From 632654c2a48404b36c87958e3a3981be77c3b134 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Wed, 8 Oct 2025 21:12:43 +0200 Subject: [PATCH] fix: windows build --- build.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.zig b/build.zig index c9caca8..833099c 100644 --- a/build.zig +++ b/build.zig @@ -444,6 +444,7 @@ pub fn build_exe( .root_source_file = b.path("src/win32/gui.zig"), .imports = &.{ .{ .name = "build_options", .module = options_mod }, + .{ .name = "soft_root", .module = soft_root_mod }, .{ .name = "win32", .module = win32_mod }, .{ .name = "cbor", .module = cbor_mod }, .{ .name = "thespian", .module = thespian_mod }, @@ -461,6 +462,7 @@ pub fn build_exe( .root_source_file = b.path("src/renderer/win32/renderer.zig"), .imports = &.{ .{ .name = "theme", .module = themes_dep.module("theme") }, + .{ .name = "soft_root", .module = soft_root_mod }, .{ .name = "win32", .module = win32_mod }, .{ .name = "cbor", .module = cbor_mod }, .{ .name = "thespian", .module = thespian_mod },