summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/14 doxygen/doc/meson.build
blob: bde2d7c812b77c6d1ef09bd07510cea3c7a7d31f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cdata.set('TOP_SRCDIR', meson.source_root())
cdata.set('TOP_BUILDDIR', meson.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)