ges:docs: Ignore GESImageSource as it is plain useless now
authorThibault Saunier <tsaunier@igalia.com>
Wed, 13 Oct 2021 02:25:40 +0000 (23:25 -0300)
committerThibault Saunier <tsaunier@igalia.com>
Fri, 15 Oct 2021 22:28:29 +0000 (19:28 -0300)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1093>

subprojects/gst-editing-services/docs/sitemap.txt
subprojects/gst-editing-services/ges/meson.build

index c68b6ec..27ae10c 100644 (file)
@@ -61,5 +61,4 @@ gi-index
                ges-prelude.h
        deprecated.md
                ges-pitivi-formatter.h
-               ges-image-source.h
                ges-multi-file-source.h
\ No newline at end of file
index dab7acb..9d69c57 100644 (file)
@@ -216,6 +216,7 @@ if build_gir
     }
     library_def = {'gir': gir}
     if not static_build
+      gir += {'sources': ges_sources + ges_headers + files('ges-image-source.h')}
       ges_gir = gnome.generate_gir(libges, kwargs: gir)
       ges_gen_sources += [ges_gir]
     endif
@@ -223,7 +224,7 @@ endif
 
 # GESImageSource is unused and is internal only so it gets stripped out when we statically
 # link GES. We keep the header for backward compatibility reasons.
-install_headers(ges_headers + files('ges-image-source.h'), subdir : 'gstreamer-1.0/ges')
+install_headers(ges_headers, subdir : 'gstreamer-1.0/ges')
 libraries += [[pkg_name, library_def]]
 
 ges_dep = declare_dependency(link_with : libges,