From 45e32188636276be665cafa82ee77bc652742eb2 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 3 Jul 2018 13:40:45 +1000 Subject: [PATCH] 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 --- doc/libinput.doxygen.in | 1 + meson.build | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/libinput.doxygen.in b/doc/libinput.doxygen.in index 7d6ce9cd..db39ea04 100644 --- a/doc/libinput.doxygen.in +++ b/doc/libinput.doxygen.in @@ -12,6 +12,7 @@ INPUT = @INPUT@ IMAGE_PATH = "@top_srcdir@/doc/svg" \ "@top_srcdir@/doc/dot" GENERATE_HTML = YES +HTML_OUTPUT = Documentation SEARCHENGINE = NO USE_MATHJAX = YES MATHJAX_RELPATH = https://cdn.mathjax.org/mathjax/latest diff --git a/meson.build b/meson.build index 58e909b6..f73a2092 100644 --- a/meson.build +++ b/meson.build @@ -432,7 +432,7 @@ if get_option('documentation') install : false) custom_target('doxygen', input : [ doxyfile ] + src_doxygen, - output : [ 'html' ], + output : [ 'Documentation' ], command : [ doxygen, doxyfile ], install : false, build_by_default : true)