From 5fbc11e1a19563a609ad9ea1dadfe90b0bf2526b Mon Sep 17 00:00:00 2001 From: peterino2 Date: Thu, 6 Nov 2025 11:54:40 -0800 Subject: [PATCH] we gonna have to fix our build system even more --- engine/core/tests/tests.zig | 1 + lib/tracy/build.zig | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/core/tests/tests.zig b/engine/core/tests/tests.zig index a9b752c..60a0781 100644 --- a/engine/core/tests/tests.zig +++ b/engine/core/tests/tests.zig @@ -34,6 +34,7 @@ test "simple systems setup for core" { engine_logs("systems started, shutting down"); + engine_logs("this is a new print added to the test function"); engine_logs("this is a new print added to the test function"); memory.MTPrintStatsDelta(); diff --git a/lib/tracy/build.zig b/lib/tracy/build.zig index 7a66f42..7e80293 100644 --- a/lib/tracy/build.zig +++ b/lib/tracy/build.zig @@ -11,7 +11,7 @@ pub fn build(b: *std.Build) void { //const tracy_enabled = b.option(bool, "tracy", "Enables tracy integration") orelse false; - const tracy_enabled: bool = true; //if (b.graph.env_map.hash_map.get("WITH_TRACY") != null) true else false; + const tracy_enabled: bool = false; //if (b.graph.env_map.hash_map.get("WITH_TRACY") != null) true else false; // if (b.graph.env_map.hash_map.get("WITH_TRACY")) |with_tracy| { // tracy_enabled = with_tracy; // }