meson.build 272 B

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