diff options
author | David Robillard <d@drobilla.net> | 2022-10-07 14:53:16 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-07 14:53:16 -0400 |
commit | 9b8d847284eea14d64d8d22cefde8103dee41132 (patch) | |
tree | 8a8634d1dd903b14e402cc1e5b100d309ae3c04e /doc/c/xml | |
parent | 727b6835a63d2a163dae434e1090a14aa7011373 (diff) | |
download | pugl-9b8d847284eea14d64d8d22cefde8103dee41132.tar.gz pugl-9b8d847284eea14d64d8d22cefde8103dee41132.tar.bz2 pugl-9b8d847284eea14d64d8d22cefde8103dee41132.zip |
Clean up meson definitions
Diffstat (limited to 'doc/c/xml')
-rw-r--r-- | doc/c/xml/meson.build | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/doc/c/xml/meson.build b/doc/c/xml/meson.build index 7dfadbb..e1b715e 100644 --- a/doc/c/xml/meson.build +++ b/doc/c/xml/meson.build @@ -10,11 +10,15 @@ config = configuration_data() config.set('PUGL_SRCDIR', pugl_src_root) config.set('DOX_OUTPUT', meson.current_build_dir() / '..') -c_doxyfile = configure_file(configuration: config, - input: '../Doxyfile.in', - output: 'Doxyfile') +c_doxyfile = configure_file( + configuration: config, + input: '../Doxyfile.in', + output: 'Doxyfile', +) -c_index_xml = custom_target('c-index.xml', - command: [doxygen, '@INPUT0@'], - input: [c_doxyfile] + c_header_files, - output: 'index.xml') +c_index_xml = custom_target( + 'c-index.xml', + command: [doxygen, '@INPUT0@'], + input: [c_doxyfile] + c_header_files, + output: 'index.xml', +) |