we gonna have to fix our build system even more

This commit is contained in:
peterino2 2025-11-06 11:54:40 -08:00
parent 0fc379cbc3
commit 5fbc11e1a1
2 changed files with 2 additions and 1 deletions

View File

@ -34,6 +34,7 @@ test "simple systems setup for core" {
engine_logs("systems started, shutting down"); 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"); engine_logs("this is a new print added to the test function");
memory.MTPrintStatsDelta(); memory.MTPrintStatsDelta();

2
lib/tracy/build.zig vendored
View File

@ -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 = 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| { // if (b.graph.env_map.hash_map.get("WITH_TRACY")) |with_tracy| {
// tracy_enabled = with_tracy; // tracy_enabled = with_tracy;
// } // }