Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-06-28 20:06:49 +0300
committerGitHub <noreply@github.com>2022-06-28 20:06:49 +0300
commitf493d4aa8ba8141d9680473fad007d8a6348628e (patch)
tree98628b35d052bcb5d1c00aa8b6bee938ca872574
parenta8511d357650282c6915f7aa9775e9c4945e42b5 (diff)
parent64e9f5e814e964f7439353441fa69b3961a95df9 (diff)
Merge pull request #416 from kklobe/kk/fix-meson-optionsv0.8.2.1v0.8.2-meson-hotfix
Fix Meson options to match build
-rw-r--r--meson_options.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index ddf950ee..ecf6ea1e 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -13,7 +13,8 @@ option('tracy_no_sampling', type : 'boolean', value : false, description : 'Disa
option('tracy_no_verify', type : 'boolean', value : false, description : 'Disable zone validation for C API')
option('tracy_no_vsync_capture', type : 'boolean', value : false, description : 'Disable capture of hardware Vsync events')
option('tracy_no_frame_image', type : 'boolean', value : false, description : 'Disable the frame image support and its thread')
-option('tracy_no_sys_trace', type : 'boolean', value : false, description : 'Disable systrace sampling')
+option('tracy_no_system_tracing', type : 'boolean', value : false, description : 'Disable systrace sampling')
+option('tracy_timer_fallback', type : 'boolean', value : false, description : 'Use lower resolution timers')
option('tracy_delayed_init', type : 'boolean', value : false, description : 'Enable delayed initialization of the library (init on first call)')
option('tracy_manual_lifetime', type : 'boolean', value : false, description : 'Enable the manual lifetime management of the profile')
option('tracy_fibers', type : 'boolean', value : false, description : 'Enable fibers support')