You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
398 B
19 lines
398 B
tgt = custom_target(
|
|
'xml-Client-doc',
|
|
command: [
|
|
gen_doxygen,
|
|
# XXX pass doxygen path as argument
|
|
'--builddir=@OUTDIR@',
|
|
'--section=Client',
|
|
'--output-format=xml',
|
|
wayland_doxygen,
|
|
'@INPUT@',
|
|
],
|
|
input: [ shared_files, client_files ],
|
|
output: [ 'combine.xslt', 'index.xml' ],
|
|
depends: [dot_png, dot_map]
|
|
)
|
|
|
|
doxygen_Client_combine_xslt = tgt[0]
|
|
doxygen_Client_index_xml = tgt[1]
|