mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2026-01-01 10:30:10 +01:00
Fix invalid bool usage which violates official meson specification and thus breaks muon, an implementation of meson written in C. Signed-off-by: illiliti <illiliti@protonmail.com>
12 lines
368 B
Meson
12 lines
368 B
Meson
option('tests',
|
|
type: 'feature',
|
|
value: 'enabled',
|
|
description: 'Build the tests')
|
|
option('documentation',
|
|
type: 'feature',
|
|
value: 'enabled',
|
|
description: 'Build the documentation')
|
|
option('coverity',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Enable coverity build fixes, see meson.build for details')
|