mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-29 23:32:04 +02:00
An easy to use GTK integration library. Meant as a GtkVideo alternative. While GtkVideo is more of a simple example of video playback under GTK4, this acts as a full-fledged video player in the form of a GtkWidget that can be placed anywhere within application. The widget offers customization options for both top header and bottom playback controls panels. The Clapper playback API is exposed under widget "player" property making it easy for the programmer to set media and control playback programically. The new library will be distributed with Clapper player. This includes public headers and GObject Introspection support. Licensed under LGPL-2.1-or-later.
19 lines
414 B
Meson
19 lines
414 B
Meson
doc_version_conf = configuration_data()
|
|
doc_version_conf.set('CLAPPER_VERSION', meson.project_version())
|
|
doc_version_conf.set('CLAPPER_VERSION_SUFFIX', clapper_version_suffix)
|
|
|
|
gi_docgen_common_args = [
|
|
'--quiet',
|
|
'--no-namespace-dir',
|
|
]
|
|
if get_option('werror')
|
|
gi_docgen_common_args += ['--fatal-warnings']
|
|
endif
|
|
|
|
if build_clapper
|
|
subdir('clapper')
|
|
endif
|
|
if build_clappergtk
|
|
subdir('clapper-gtk')
|
|
endif
|