1
0
Fork 0
nautilus/extensions/audio-video-properties/meson.build
Daniel Baumann c99d511d89
Adding upstream version 48.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 22:37:51 +02:00

26 lines
535 B
Meson

libm = cc.find_library('m')
libtotem_properties_page_sources = files(
'totem-properties-main.c',
'totem-properties-view.c',
'totem-gst-helpers.c',
)
libtotem_properties_page_deps = [
libm,
gst_tag_dep,
gst_pbutils_dep,
]
libtotem_properties_page = shared_module(
'totem-properties-page',
sources: libtotem_properties_page_sources,
dependencies: libtotem_properties_page_deps + [
nautilus_extension
],
c_args: [
'-DG_LOG_DOMAIN="TotemPropertiesPage"'
],
install: true,
install_dir: extensiondir
)