meson: Cleanup build files

Remove some twice declared variables and keep code style
This commit is contained in:
Rafał Dzięgiel
2021-09-08 20:44:12 +02:00
parent b5007d12a1
commit 6cddb1a16d
6 changed files with 81 additions and 85 deletions

View File

@@ -1,20 +1,20 @@
option('clapper-player',
type : 'boolean',
value : true,
type: 'boolean',
value: true,
description: 'Build Clapper player'
)
option('clapper-lib',
type : 'boolean',
value : true,
type: 'boolean',
value: true,
description: 'Build Clapper libs (including API)'
)
option('devel-checks',
type : 'boolean',
value : false,
type: 'boolean',
value: false,
description: 'GStreamer GLib checks and asserts such as API guards (disable for stable releases)'
)
option('deprecated-glib-api',
type : 'boolean',
value : true,
type: 'boolean',
value: true,
description: 'Allow using of deprecated GLib API'
)