From 8531e879a9737fad0526bef12bfbfc16b6ec0bb0 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 21 Jun 2026 22:40:41 +0200 Subject: [PATCH] Use TracyNoop to ensure profiler library is linked with executable. --- examples/dyna/src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/dyna/src/main.cpp b/examples/dyna/src/main.cpp index 3fb6bece..2225c388 100644 --- a/examples/dyna/src/main.cpp +++ b/examples/dyna/src/main.cpp @@ -2,9 +2,12 @@ #include "gfx.hpp" #include +#include int main( int /*argc*/, char* /*argv*/[] ) { + TracyNoop; + if( !dyna::Init::all() ) return 1;