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

TracyDebug now uses TracyInternalMessage by default unless TRACY_VERBOSE or TRACY_NO_INTERNAL_MESSAGE is defined

This commit is contained in:
Clément Grégoire
2025-10-24 17:56:02 +02:00
parent 13261b9bdc
commit f17bd3f444
13 changed files with 71 additions and 45 deletions

View File

@@ -114,6 +114,10 @@ if get_option('verbose')
tracy_common_args += ['-DTRACY_VERBOSE']
endif
if get_option('no_internal_message')
tracy_common_args += ['-DTRACY_NO_INTERNAL_MESSAGE']
endif
if get_option('debuginfod')
tracy_common_args += ['-DTRACY_DEBUGINFOD']
tracy_public_deps += dependency('libdebuginfod')