aboutsummaryrefslogtreecommitdiff
path: root/test cases/frameworks/14 doxygen/doc/meson.build
blob: 626b8ce5723b0349eb328b1a357a845013f9e4a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cdata.set('TOP_SRCDIR', meson.project_source_root())
cdata.set('TOP_BUILDDIR', meson.project_build_root())

doxyfile = configure_file(input: 'Doxyfile.in',
                          output: 'Doxyfile',
                          configuration: cdata,
                          install: false)

datadir = join_paths(get_option('datadir'), 'doc', 'spede')

html_target = custom_target('spede-docs',
                            input: doxyfile,
                            output: 'html',
                            command: [doxygen, doxyfile],
                            install: true,
                            install_dir: datadir)