Revert "Fhotdoc"

This reverts commit 220618ecc7.

This was not meant to be pushed.
This commit is contained in:
Thibault Saunier 2017-03-10 19:46:24 -03:00
parent 5c5179c40b
commit 909f0b7412
4 changed files with 11 additions and 19 deletions

View file

@ -36,7 +36,7 @@ editing-related applications.
### Timeline and TimelinePipeline ### Timeline and TimelinePipeline
The most top-level object encapsulating every other object is the The most top-level object encapsulating every other object is the
[GESTimeline](GESTimeline). It is the central object for any editing project. #GESTimeline. It is the central object for any editing project.
The `GESTimeline` is a `GstElement`. It can therefore be used in any The `GESTimeline` is a `GstElement`. It can therefore be used in any
GStreamer pipeline like any other object. GStreamer pipeline like any other object.
@ -61,4 +61,4 @@ The GESTimeline can contain two types of objects (seen in
In order to reduce even more the amount of GStreamer interaction the In order to reduce even more the amount of GStreamer interaction the
application developer has to deal with, a convenience GstPipeline has application developer has to deal with, a convenience GstPipeline has
been made available specifically for Timelines : [GESPipeline](GESPipeline). been made available specifically for Timelines : #GESPipeline.

View file

@ -1,17 +1,13 @@
ges_excludes = [] ges_excludes = []
foreach f: ['gesmarshal.*', foreach f: ['gesmarshal.h', 'ges-internal.h', 'ges-auto-transition.[ch]',
'ges-internal.*', 'ges-structured-interface.[ch]', 'ges-structure-parser.[ch]',
'ges-auto-transition.*', 'ges-smart-video-mixer.[ch]', 'gstframepositioner.[ch]',
'ges-structured-interface.*', 'ges/lex.priv_ges_parse_yy.c']
'ges-structure-parser.*',
'ges-smart-*.',
'gstframepositioner.*',
'lex.priv_ges_parse_yy.c']
ges_excludes += [join_paths(meson.current_source_dir(), '..', '..', 'ges', f)] ges_excludes += [join_paths(meson.current_source_dir(), '..', '..', 'ges', f)]
endforeach endforeach
hotdoc = import('hotdoc') hotdoc = import('hotdoc')
gst_editing_services_doc = hotdoc.generate_doc('gst-editing-services', gst_editin_services_doc = hotdoc.generate_doc('gst-editing-services',
project_version: apiversion, project_version: apiversion,
extra_assets: [join_paths(meson.current_source_dir(), 'images')], extra_assets: [join_paths(meson.current_source_dir(), 'images')],
c_sources: ['../../ges/ges.h', '../../ges/*.[hc]'], c_sources: ['../../ges/ges.h', '../../ges/*.[hc]'],

View file

@ -175,7 +175,7 @@ if build_gir
'-I' + meson.current_build_dir() + '/..', '-I' + meson.current_build_dir() + '/..',
'--cflags-end'] '--cflags-end']
endif endif
ges_gir = gnome.generate_gir(libges, ges_gen_sources += [gnome.generate_gir(libges,
sources : ges_sources + ges_headers, sources : ges_sources + ges_headers,
namespace : 'GES', namespace : 'GES',
nsversion : apiversion, nsversion : apiversion,
@ -186,9 +186,7 @@ if build_gir
install : true, install : true,
dependencies : libges_deps, dependencies : libges_deps,
extra_args : ges_gir_extra_args extra_args : ges_gir_extra_args
) )]
ges_gen_sources += [ges_gir]
endif endif
ges_dep = declare_dependency(link_with : libges, ges_dep = declare_dependency(link_with : libges,

View file

@ -138,17 +138,15 @@ subdir('pkgconfig')
subdir('tests') subdir('tests')
subdir('examples') subdir('examples')
build_hotdoc = false
if build_machine.system() == 'windows' if build_machine.system() == 'windows'
message('Disabling gtk-doc while building on Windows') message('Disabling gtk-doc while building on Windows')
elif get_option('disable_gtkdoc') elif get_option('disable_gtkdoc')
message('gtk-doc is disabled via options') message('gtk-doc is disabled via options')
else else
hotdoc_p = find_program('hotdoc', required : false) if find_program('gtkdoc-scan', required : false).found()
if hotdoc_p.found()
subdir('docs') subdir('docs')
else else
message('Not building documentation as hotdoc was not found') message('Not building documentation as gtk-doc was not found')
endif endif
endif endif