mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-18 16:04:02 +01:00
strip zig binaries
This commit is contained in:
parent
077f5ac8d6
commit
e00b15a25b
2 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,8 @@ pub fn build(b: *std.build.Builder) void {
|
|||
exe.linkLibC();
|
||||
exe.linkSystemLibrary("gtk4");
|
||||
|
||||
exe.strip = mode != .Debug;
|
||||
|
||||
exe.install();
|
||||
|
||||
const run_cmd = exe.run();
|
||||
|
|
|
@ -19,6 +19,8 @@ pub fn build(b: *std.build.Builder) void {
|
|||
exe.linkSystemLibrary("x11");
|
||||
exe.linkSystemLibrary("xinerama");
|
||||
|
||||
exe.strip = mode != .Debug;
|
||||
|
||||
exe.install();
|
||||
|
||||
const run_cmd = exe.run();
|
||||
|
|
Loading…
Reference in a new issue