mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
This should allow to still compile and use the player with the legacy sink, without changing meson default options
43 lines
945 B
Meson
43 lines
945 B
Meson
option('player',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Build Clapper player'
|
|
)
|
|
option('lib',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Build GstClapper lib'
|
|
)
|
|
option('gst-plugin',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build GStreamer plugin (includes GTK video sink element)'
|
|
)
|
|
|
|
option('glimporter',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build GL memory importer for clappersink'
|
|
)
|
|
option('gluploader',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build GL uploader for clappersink'
|
|
)
|
|
option('rawimporter',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build RAW system memory importer for clappersink'
|
|
)
|
|
|
|
option('devel-checks',
|
|
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,
|
|
description: 'Allow using of deprecated GLib API'
|
|
)
|