mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-11-04 06:00:23 +00:00
bc282cf300
Newer versions of the XML and headers don't play nice. In particular the VK_LAYER_EXPORT macro was removed and the XML was reworked quite significantly, so our generator no longer works. I was able to port newer version of the generator scripts from Mesa (where these were copied from originally), although these new scripts don't work with the old XML. Just drop the meson knobs and always use the subproject version. In practical terms this is identical to what Mesa also does... So Debian DFSG should not be _too_ upset. Closes: https://github.com/flightlessmango/MangoHud/issues/927 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
15 lines
1.2 KiB
Meson
15 lines
1.2 KiB
Meson
option('glibcxx_asserts', type : 'boolean', value : false)
|
|
option('use_system_spdlog', type : 'feature', value : 'disabled', description: 'Use system spdlog library')
|
|
option('append_libdir_mangohud', type : 'boolean', value : true, description: 'Append "mangohud" to libdir path or not.')
|
|
option('include_doc', type : 'boolean', value : true, description: 'Include the example config, man pages, appstream files etc.')
|
|
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('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)
|
|
option('mangohudctl', type: 'boolean', value : false)
|
|
option('mangoapp_layer', type: 'boolean', value : false)
|
|
option('tests', type: 'feature', value: 'auto', description: 'Run tests')
|