1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-23 12:05:11 -07:00

Update for zig-master

This commit is contained in:
Frank Denis 2023-04-12 12:58:37 +02:00
parent 66a68f0947
commit adcde0ca4e

View File

@ -32,7 +32,7 @@ pub fn build(b: *std.build.Builder) !void {
}
for (libs) |lib| {
lib.install();
b.installArtifact(lib);
if (optimize != .Debug) {
lib.strip = true;
}
@ -227,6 +227,6 @@ pub fn build(b: *std.build.Builder) !void {
exe.defineCMacro("ITERATIONS", std.fmt.bufPrintIntToSlice(&buf, benchmarks_iterations, 10, .lower, .{}));
}
exe.install();
b.installArtifact(exe);
}
}