From 92a0feb8218a811b82601558daf1a358ec17d39a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Gr=C3=A9goire?= Date: Wed, 23 Feb 2022 14:09:04 +0100 Subject: [PATCH] CMake: Add the new TRACY_NO_CALLSTACK option --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e9ca329..d0372616 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,7 +35,8 @@ endmacro() set_option(TRACY_ENABLE "Enable profiling" ON) set_option(TRACY_ON_DEMAND "On-demand profiling" OFF) -set_option(TRACY_CALLSTACK "Collect call stacks" OFF) +set_option(TRACY_CALLSTACK "Regions collect call stacks" OFF) +set_option(TRACY_NO_CALLSTACK "Disable all callstack related functionality" OFF) set_option(TRACY_NO_CALLSTACK_INLINES "Disables the inline functions in callstacks" OFF) set_option(TRACY_ONLY_LOCALHOST "Only listen on the localhost interface" OFF) set_option(TRACY_NO_BROADCAST "Disable client discovery by broadcast to local network" OFF)