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.
17 lines
621 B
17 lines
621 B
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) |
|
|
|
|