doc: build doxygen output into "Documentation"

Slightly more obvious than just "html". Main motivation here is that we want
to provide the documentation as artifact from GitLab's CI, so having it unzip
to something slightly more meaningful makes sense.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2018-07-03 13:40:45 +10:00
parent 0d8c70baef
commit c243bd1cbf
2 changed files with 2 additions and 1 deletions

View file

@ -12,6 +12,7 @@ INPUT = @INPUT@
IMAGE_PATH = "@top_srcdir@/doc/svg" \ IMAGE_PATH = "@top_srcdir@/doc/svg" \
"@top_srcdir@/doc/dot" "@top_srcdir@/doc/dot"
GENERATE_HTML = YES GENERATE_HTML = YES
HTML_OUTPUT = Documentation
SEARCHENGINE = NO SEARCHENGINE = NO
USE_MATHJAX = YES USE_MATHJAX = YES
MATHJAX_RELPATH = https://cdn.mathjax.org/mathjax/latest MATHJAX_RELPATH = https://cdn.mathjax.org/mathjax/latest

View file

@ -432,7 +432,7 @@ if get_option('documentation')
install : false) install : false)
custom_target('doxygen', custom_target('doxygen',
input : [ doxyfile ] + src_doxygen, input : [ doxyfile ] + src_doxygen,
output : [ 'html' ], output : [ 'Documentation' ],
command : [ doxygen, doxyfile ], command : [ doxygen, doxyfile ],
install : false, install : false,
build_by_default : true) build_by_default : true)