@kugel- 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@'],
OK. `depend_files` seems to work, but not my shell wrapper: `@OUTPUT@` is not substituted when `command: [sh, '-c', 'doxygen @INPUT@ && touch @OUTPUT@'],` is run: `/usr/bin/sh -c 'doxygen doc/Doxyfile && touch @OUTPUT@'`