diff options
author | David Robillard <d@drobilla.net> | 2023-05-27 12:44:32 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-05-27 12:44:32 -0400 |
commit | 5424d37e388fbc68343d05acffaed29b7698dd9c (patch) | |
tree | 791d432e2838aedea2d95e8330e2794dce7c7c61 /doc/c | |
parent | 6514fbd3fd8e72950d0867f2ab1ce14dc44b0371 (diff) | |
download | pugl-5424d37e388fbc68343d05acffaed29b7698dd9c.tar.gz pugl-5424d37e388fbc68343d05acffaed29b7698dd9c.tar.bz2 pugl-5424d37e388fbc68343d05acffaed29b7698dd9c.zip |
Use files() for headers in meson
Diffstat (limited to 'doc/c')
-rw-r--r-- | doc/c/xml/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/c/xml/meson.build b/doc/c/xml/meson.build index 1c1cddd..8b5e0e2 100644 --- a/doc/c/xml/meson.build +++ b/doc/c/xml/meson.build @@ -14,6 +14,6 @@ c_doxyfile = configure_file( c_index_xml = custom_target( 'c-index.xml', command: [doxygen, '@INPUT0@'], - input: [c_doxyfile] + c_header_files, + input: [c_doxyfile] + c_headers, output: 'index.xml', ) |