We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bed900 commit 78bcf26Copy full SHA for 78bcf26
build.zig
@@ -94,7 +94,6 @@ pub fn build(b: *std.Build) !void {
94
.root_source_file = b.path("src/zimpact/zimpact.zig"),
95
.target = target,
96
.optimize = optimize,
97
- .strip = false,
98
});
99
b.installArtifact(lib);
100
@@ -122,7 +121,7 @@ pub fn build(b: *std.Build) !void {
122
121
123
124
if (is_sdl_platform) {
125
- sdl_sdk.link(exe, .static);
+ sdl_sdk.link(exe, .dynamic);
126
}
127
exe.root_module.addImport("zimpact", mod_zi);
128
const install_exe = b.addInstallArtifact(exe, .{});
0 commit comments