develop #15

Merged
cromer merged 64 commits from develop into master 2023-02-23 01:11:48 -03:00
Showing only changes of commit 6a3fccdcba - Show all commits

View File

@ -2,15 +2,17 @@ cdata.set('TOP_SRCDIR', meson.source_root())
cdata.set('TOP_BUILDDIR', meson.build_root()) cdata.set('TOP_BUILDDIR', meson.build_root())
doxyfile = configure_file(input: 'doxygen.conf.in', doxyfile = configure_file(input: 'doxygen.conf.in',
output: 'doxygen.conf', output: 'doxygen.conf',
configuration: cdata, configuration: cdata,
install: false) install: false
)
datadir = join_paths(get_option('datadir'), 'doc', 'obelisk') datadir = join_paths(get_option('datadir'), 'doc', 'obelisk')
html_target = custom_target('obelisk-docs', html_target = custom_target('obelisk-docs',
input: doxyfile, input: doxyfile,
output: 'html', output: 'html',
command: [doxygen, doxyfile], command: [doxygen, doxyfile],
install: true, install: true,
install_dir: datadir) install_dir: datadir
)