tuxclocker/meson_options.txt

17 lines
975 B
Meson
Raw Normal View History

2020-01-04 08:28:34 -06:00
# By default, library and modules (except interfaces) are built
2021-02-18 09:59:52 -06:00
option('daemon', type: 'boolean', value: 'true', description: 'Build daemon')
2020-03-17 18:39:44 -05:00
option('plugins', type: 'boolean', value: 'true', description: 'Build plugins')
2020-01-04 08:28:34 -06:00
option('library', type: 'boolean', value: 'true', description: 'Build library')
2021-02-18 09:59:52 -06:00
option('gui', type: 'boolean', value: 'true', description: 'Build Qt GUI')
2023-12-22 06:24:40 -06:00
# Disabled by default to not break builds
option('cli', type: 'boolean', value: 'false', description: 'Build CLI')
option('test', type: 'boolean', value: 'false', description: 'Build tests')
option('require-python-hwdata', type: 'boolean', value: 'false',
description: 'Require python-hwdata for prettier AMD GPU names')
option('require-amd', type: 'boolean', value: 'false',
description: 'Require AMD plugin')
option('require-nvidia', type: 'boolean', value: 'false',
description: 'Require NVIDIA plugin')
2023-12-14 12:27:15 -06:00
option('plugins-cpu', type: 'boolean', value: 'true', description: 'Build CPU plugin')