fixing module export

This commit is contained in:
2025-10-31 17:47:25 +01:00
parent 6d559d719a
commit f95098cead
7 changed files with 35 additions and 33 deletions

7
src/soft/lib.zig git.filemode.normal_file
View File

@@ -0,0 +1,7 @@
const std = @import("std");
const vk = @import("vulkan");
const common = @import("common");
export fn libVulkanExport() void {
_ = common;
}