only compile tracy on linux
parent
147916efea
commit
0dbd4d2ca6
|
|
@ -12,7 +12,6 @@ jobs:
|
|||
x86_64-macos,
|
||||
|
||||
aarch64-linux-gnu,
|
||||
i386-linux-gnu,
|
||||
x86_64-linux-gnu,
|
||||
|
||||
# No windows support currently.
|
||||
|
|
|
|||
|
|
@ -24,8 +24,9 @@ pub fn build(b: *std.build.Builder) !void {
|
|||
const tracy = b.option(
|
||||
bool,
|
||||
"tracy",
|
||||
"Enable Tracy integration (default true in Debug)",
|
||||
) orelse (mode == .Debug);
|
||||
"Enable Tracy integration (default true in Debug on Linux)",
|
||||
) orelse (mode == .Debug and target.isLinux());
|
||||
|
||||
const conformance = b.option(
|
||||
[]const u8,
|
||||
"conformance",
|
||||
|
|
|
|||
Loading…
Reference in New Issue