feat: re-enable something

This commit is contained in:
2025-10-12 21:18:42 -05:00
parent bd02f625a5
commit 5841ecea46
3 changed files with 4 additions and 3 deletions

View File

@@ -81,6 +81,8 @@ pub fn build(b: *std.Build) void {
exe_mod.addImport("zgui", zgui.module("root")); exe_mod.addImport("zgui", zgui.module("root"));
exe_mod.addImport("bitjuggle", b.dependency("bitjuggle", .{}).module("bitjuggle")); exe_mod.addImport("bitjuggle", b.dependency("bitjuggle", .{}).module("bitjuggle"));
exe_mod.addAnonymousImport("example.toml", .{ .root_source_file = b.path("example.toml") });
// This declares intent for the executable to be installed into the // This declares intent for the executable to be installed into the
// install prefix when running `zig build` (i.e. when executing the default // install prefix when running `zig build` (i.e. when executing the default
// step). By default the install prefix is `zig-out/` but can be overridden // step). By default the install prefix is `zig-out/` but can be overridden

View File

@@ -61,4 +61,5 @@ pub fn load(allocator: Allocator, file_path: []const u8) !void {
// FIXME(2025-09-22): re-enable // FIXME(2025-09-22): re-enable
// state = try tomlz.parser.decode(Config, allocator, contents); // state = try tomlz.parser.decode(Config, allocator, contents);
state = .{};
} }

View File

@@ -197,9 +197,7 @@ fn configFilePath(allocator: Allocator, config_path: []const u8) ![]const u8 {
const config_file = std.fs.createFileAbsolute(path, .{}) catch |err| exitln("failed to create \"{s}\": {}", .{ path, err }); const config_file = std.fs.createFileAbsolute(path, .{}) catch |err| exitln("failed to create \"{s}\": {}", .{ path, err });
defer config_file.close(); defer config_file.close();
// FIXME(2025-09-22): re-enable try config_file.writeAll(@embedFile("example.toml"));
// try config_file.writeAll(@embedFile("example.toml"));
try config_file.writeAll("");
}; };
return path; return path;