The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
621 B
18 lines
621 B
8 years ago
|
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)
|
||
|
|