@eli-schwartz commented on this pull request.
- dep_doxygen = declare_dependency(sources: ['plugins.dox',
+ 'pluginsignals.c', + 'pluginsymbols.c', + 'stash-example.c', + 'stash-gui-example.c']) + + custom_target('doxygen.stamp', + input: dox, + output: ['doxygen.stamp'], + command: [doxygen, '@INPUT@', '&&', 'touch', '@OUTPUT@'], + depends: libgeany, + build_by_default: true) + doxy_xml = custom_target('doxygen-gi.stamp', + input: doxgi, + output: ['doxygen-gi.stamp'], + command: [doxygen, '@INPUT@', '&&', 'touch', '@OUTPUT@'],
The `"` character is one of the "would break a shell script" characters I mentioned.
The root problem of specifying output files in subdirectories is a legitimate point, which nevertheless (fortunately?) does not affect the majority of use cases. For unrelated reasons, I actually do want to add a doxygen function to meson, which *would* be able to do behind the scenes stuff and track output files in subdirectories...