feat: strip binary when not in debug mode

This commit is contained in:
LordMZTE 2022-08-10 00:15:24 +02:00
parent 654c3690e7
commit ca74e717c8
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6

View file

@ -11,6 +11,7 @@ pub fn build(b: *std.build.Builder) !void {
lib.target.cpu_arch = .wasm32;
lib.target.os_tag = .wasi;
lib.strip = mode != .Debug;
lib.strip = mode != .Debug;