this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

added strip option

Altagos c85cda01 a67f5de0

+6
+6
build.zig
··· 9 9 .enable = enable_spall, 10 10 }); 11 11 12 + const strip = b.option(bool, "strip", "") orelse false; 13 + 12 14 const rayray = b.addModule("rayray", .{ 13 15 .root_source_file = .{ .path = "src/rayray.zig" }, 14 16 .target = target, 15 17 .optimize = optimize, 16 18 }); 19 + rayray.strip = strip; 20 + 17 21 rayray.addImport("spall", spall.module("spall")); 18 22 19 23 addDeps(b, rayray); ··· 24 28 .target = target, 25 29 .optimize = optimize, 26 30 }); 31 + exe.root_module.strip = strip; 32 + 27 33 addDeps(b, &exe.root_module); 28 34 exe.root_module.addImport("spall", spall.module("spall")); 29 35 exe.root_module.addImport("rayray", rayray);