mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-10-31 15:20:13 +00:00
19 lines
1.8 KiB
Meson
19 lines
1.8 KiB
Meson
option('glibcxx_asserts', type : 'boolean', value : false)
|
|
option('use_system_vulkan', type : 'feature', value : 'disabled', description: 'Use system vulkan headers instead of the provided ones')
|
|
option('use_system_spdlog', type : 'feature', value : 'disabled', description: 'Use system spdlog library')
|
|
option('vulkan_datadir', type : 'string', value : '', description: 'Path to the system vulkan headers data directory if different from MangoHud\'s datadir')
|
|
option('append_libdir_mangohud', type : 'boolean', value : true, description: 'Append "mangohud" to libdir path or not.')
|
|
option('ld_libdir_prefix', type : 'boolean', value : false, description: 'Set ld libdir to "$prefix/lib/mangohud/\$LIB"')
|
|
option('ld_libdir_abs', type : 'boolean', value : false, description: 'Use absolute path in LD_PRELOAD')
|
|
option('prepend_libdir_vk', type : 'boolean', value : true, description: 'Prepend libdir to library path in vulkan manifest')
|
|
option('include_doc', type : 'boolean', value : true, description: 'Include the example config')
|
|
option('with_nvml', type : 'combo', value : 'enabled', choices: ['enabled', 'system', 'disabled'], description: 'Enable NVML support')
|
|
option('with_xnvctrl', type : 'feature', value : 'enabled', description: 'Enable XNVCtrl support')
|
|
option('with_x11', type : 'feature', value : 'enabled')
|
|
option('with_wayland', type : 'feature', value : 'disabled')
|
|
option('with_dbus', type : 'feature', value : 'enabled')
|
|
option('with_dlsym', type : 'feature', value : 'disabled')
|
|
option('with_libdrm_amdgpu', type : 'feature', value : 'enabled', description: 'Get amdgpu sensor info through libdrm_amdgpu')
|
|
option('loglevel', type: 'combo', choices : ['trace', 'debug', 'info', 'warn', 'err', 'critical', 'off'], value : 'info', description: 'Max log level in non-debug build')
|
|
option('mangoapp', type: 'boolean', value : 'false')
|