this repo has no description
0
fork

Configure Feed

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

small changes to build files

Altagos 863158da 32668a36

+3 -7
+1 -2
build.zig
··· 7 7 const options = b.addOptions(); 8 8 9 9 const strip = b.option(bool, "strip", "") orelse (optimize != .Debug); 10 - const max_depth = b.option(u64, "max-depth", "") orelse 5; 10 + const max_depth = b.option(u64, "max-depth", "Set the max depth of the BVH tree") orelse std.math.maxInt(u64); 11 11 options.addOption(u64, "max_depth", max_depth); 12 12 13 13 const rayray = b.addModule("rayray", .{ ··· 27 27 .optimize = optimize, 28 28 }); 29 29 exe.root_module.strip = strip; 30 - 31 30 exe.root_module.addImport("rayray", rayray); 32 31 33 32 const alib = b.dependency("a", .{
+2 -5
build.zig.zon
··· 1 1 .{ 2 2 .name = "rayray", 3 3 .version = "0.1.0", 4 - .zig_version = "v0.13.0-dev.3+dddddcffd", 5 - .minimum_zig_version = "0.13.0-dev.3+dddddcffd", 4 + .zig_version = "0.14.0-dev.1569+b56a667ec", 6 5 .dependencies = .{ 7 6 // libs folder 8 7 .zmath = .{ .path = "libs/zmath" }, ··· 13 12 .hash = "12209a07e35e58e69838fd66b68a13ee2b1fbf999e6242acdec0d7354be1324aef76", 14 13 }, 15 14 .zigimg = .{ 16 - // .url = "git+https://github.com/altagos/zigimg#a5a18768691c27cf3b312b67ca5084148a502e3e", 17 - // .hash = "1220e69e80741a9650a86e4369128698005f0049c6508b788e7fe1809480af62f4f8", 18 15 .url = "git+https://github.com/altagos/zigimg#cf13eae690b9c042d08feb4f0446661cf7c0ccc4", 19 16 .hash = "1220dcdd3df49d5b3cdbf279efee2a5bfbea1bb05065a569650b0688de269108e562", 20 17 }, ··· 23 20 "build.zig", 24 21 "build.zig.zon", 25 22 "src", 26 - //"LICENSE", 23 + "LICENSE", 27 24 //"README.md", 28 25 }, 29 26 }