From 6a3fccdcba540cbd3286f8db1df37c4bac376cb2 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Fri, 9 Dec 2022 23:41:10 -0300 Subject: [PATCH] tidy up the doc meson.build file --- doc/meson.build | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/doc/meson.build b/doc/meson.build index 8acc954..c66f864 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -2,15 +2,17 @@ cdata.set('TOP_SRCDIR', meson.source_root()) cdata.set('TOP_BUILDDIR', meson.build_root()) doxyfile = configure_file(input: 'doxygen.conf.in', - output: 'doxygen.conf', - configuration: cdata, - install: false) + output: 'doxygen.conf', + configuration: cdata, + install: false +) datadir = join_paths(get_option('datadir'), 'doc', 'obelisk') html_target = custom_target('obelisk-docs', - input: doxyfile, - output: 'html', - command: [doxygen, doxyfile], - install: true, - install_dir: datadir) + input: doxyfile, + output: 'html', + command: [doxygen, doxyfile], + install: true, + install_dir: datadir +)