mirror of
https://github.com/Lurkki14/tuxclocker.git
synced 2024-11-21 15:57:25 -06:00
17 lines
975 B
Meson
17 lines
975 B
Meson
# By default, library and modules (except interfaces) are built
|
|
|
|
option('daemon', type: 'boolean', value: 'true', description: 'Build daemon')
|
|
option('plugins', type: 'boolean', value: 'true', description: 'Build plugins')
|
|
option('library', type: 'boolean', value: 'true', description: 'Build library')
|
|
option('gui', type: 'boolean', value: 'true', description: 'Build Qt GUI')
|
|
# 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')
|
|
option('plugins-cpu', type: 'boolean', value: 'true', description: 'Build CPU plugin')
|