2
0
mirror of https://github.com/wolfpld/tracy synced 2026-01-19 04:52:09 +00:00

TRACY_CALLSTACK is not boolean.

This commit is contained in:
Bartosz Taudul
2025-11-03 16:31:16 +01:00
parent d413e2bb51
commit 9a27779d56
2 changed files with 3 additions and 3 deletions

View File

@@ -17,8 +17,8 @@ if get_option('on_demand')
tracy_common_args += ['-DTRACY_ON_DEMAND']
endif
if get_option('callstack')
tracy_common_args += ['-DTRACY_CALLSTACK']
if get_option('callstack') > 0
tracy_common_args += ['-DTRACY_CALLSTACK='+get_option('callstack').to_string()]
endif
if get_option('no_callstack')