mirror of
https://github.com/Lurkki14/tuxclocker.git
synced 2024-11-21 15:57:25 -06:00
13 lines
697 B
Meson
13 lines
697 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')
|
|
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')
|