@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@'],
Then let it be `command: [sh, '-c', 'doxygen "@INPUT@" && touch "@OUTPUT@"'],`
Anyway, the root problem is that I can't specify output files in subdirectories, this is the only reason for the stamp file (and shell wrapper) at all. And the discussion on mesonbuild/meson#2320 doesn't look like meson cares much about users.