blob: c3bfa205214b7f5658d2d98da702c8e1a2505e3b (
plain)
1
2
3
4
5
6
7
8
9
|
project('custom-target-dir-install')
docgen = find_program('docgen.py')
custom_target('docgen',
output : 'html',
command : [docgen, '@OUTPUT@'],
install : true,
install_dir : join_paths(get_option('datadir'), 'doc/testpkgname'))
|