1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 04:23:51 +00:00

specify more accurate min version

This commit is contained in:
Elliot 2023-11-09 13:56:21 -05:00
parent 46ba3bf1c9
commit 96411e5d10
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
project('tracy', ['cpp'], version: '0.10.0', meson_version: '>=0.60.0')
project('tracy', ['cpp'], version: '0.10.0', meson_version: '>=0.54.0')
# internal compiler flags
tracy_compile_args = []

View File

@ -19,5 +19,5 @@ option('tracy_timer_fallback', type : 'boolean', value : false, description : 'U
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')
option('tracy_shared_libs', type : 'boolean', value : false, description : 'Builds Tracy as a shared object (deprecated: please specify default_library=shared)', deprecated : true)
option('tracy_shared_libs', type : 'boolean', value : false, description : 'Builds Tracy as a shared object')
option('tracy_no_crash_handler', type : 'boolean', value : false, description : 'Disable crash handling')