Rename build options
This commit is contained in:
@@ -14,9 +14,9 @@ pub fn build(b: *std.Build) void {
|
|||||||
const zpool = b.dependency("zpool", .{});
|
const zpool = b.dependency("zpool", .{});
|
||||||
const zstbi = b.dependency("zstbi", .{});
|
const zstbi = b.dependency("zstbi", .{});
|
||||||
const ztracy = b.dependency("ztracy", .{
|
const ztracy = b.dependency("ztracy", .{
|
||||||
.enable_ztracy = b.option(bool, "enable_ztracy", "Enable Tracy profile markers") orelse false,
|
.enable_ztracy = b.option(bool, "tracy", "Enable Tracy profile markers") orelse false,
|
||||||
.enable_fibers = b.option(bool, "enable_fibers", "Enable Tracy fiber support") orelse false,
|
.enable_fibers = b.option(bool, "tracy_fibers", "Enable Tracy fiber support") orelse false,
|
||||||
.on_demand = b.option(bool, "on_demand", "Build Tracy with TRACY_ON_DEMAND") orelse false,
|
.on_demand = b.option(bool, "tracy_on_demand", "Build Tracy with TRACY_ON_DEMAND") orelse false,
|
||||||
});
|
});
|
||||||
|
|
||||||
const target = b.standardTargetOptions(.{});
|
const target = b.standardTargetOptions(.{});
|
||||||
|
|||||||
Reference in New Issue
Block a user