1tgt = custom_target( 2 'xml-Server-doc', 3 command: [ 4 gen_doxygen, 5 # XXX pass doxygen path as argument 6 '--builddir=@OUTDIR@', 7 '--section=Server', 8 '--output-format=xml', 9 wayland_doxygen, 10 '@INPUT@', 11 ], 12 input: [ shared_files, server_files ], 13 output: [ 'combine.xslt', 'index.xml' ], 14 depends: [dot_png, dot_map] 15) 16 17doxygen_Server_combine_xslt = tgt[0] 18doxygen_Server_index_xml = tgt[1] 19