Rename build options

This commit is contained in:
2025-02-08 12:16:31 +01:00
parent 50b68ed5b2
commit bf2c03b8d5

View File

@@ -14,9 +14,9 @@ pub fn build(b: *std.Build) void {
const zpool = b.dependency("zpool", .{});
const zstbi = b.dependency("zstbi", .{});
const ztracy = b.dependency("ztracy", .{
.enable_ztracy = b.option(bool, "enable_ztracy", "Enable Tracy profile markers") orelse false,
.enable_fibers = b.option(bool, "enable_fibers", "Enable Tracy fiber support") orelse false,
.on_demand = b.option(bool, "on_demand", "Build Tracy with TRACY_ON_DEMAND") orelse false,
.enable_ztracy = b.option(bool, "tracy", "Enable Tracy profile markers") orelse false,
.enable_fibers = b.option(bool, "tracy_fibers", "Enable Tracy fiber support") orelse false,
.on_demand = b.option(bool, "tracy_on_demand", "Build Tracy with TRACY_ON_DEMAND") orelse false,
});
const target = b.standardTargetOptions(.{});