mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
A rewritten Clapper video player made using "Clapper" and "ClapperGtk" libraries. Since both libraries from this repo are in C, newly rewritten Clapper binary is also in C to avoid mixing different programming languages in a single repo, thus making maintenance easier. Not depending on GJS gives us also an additional benefit of supporting different operating systems or linux shells without pulling GJS as dependency. Licensed under GPL-3.0-or-later.
71 lines
1.4 KiB
Meson
71 lines
1.4 KiB
Meson
# Build
|
|
option('clapper',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build Clapper library'
|
|
)
|
|
option('clapper-gtk',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build Clapper GTK integration library'
|
|
)
|
|
option('clapper-app',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build Clapper application'
|
|
)
|
|
option('gst-plugin',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build GStreamer plugin (includes GTK video sink element)'
|
|
)
|
|
option('introspection',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build GObject Introspection data'
|
|
)
|
|
option('vapi',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build Vala bindings'
|
|
)
|
|
option('doc',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Build documentation'
|
|
)
|
|
|
|
# Features
|
|
option('discoverer',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build Clapper Discoverer feature'
|
|
)
|
|
option('mpris',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build Clapper MPRIS feature'
|
|
)
|
|
option('server',
|
|
type: 'feature',
|
|
value: 'auto',
|
|
description: 'Build Clapper Server feature'
|
|
)
|
|
|
|
# GStreamer plugin options
|
|
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'
|
|
)
|