summaryrefslogtreecommitdiffstats
path: root/test cases/common/202 custom target build by default/meson.build
blob: 53f0fe6e99454c0d198635de7dd72d74800ebfb9 (plain)
1
2
3
4
5
6
7
8
9
10
project('custom-target-dir-install')

docgen = find_program('docgen.py')

custom_target('docgen',
  output : 'html',
  command : [docgen, '@OUTPUT@'],
  install : true,
  build_by_default : false,
  install_dir : join_paths(get_option('datadir'), 'doc/testpkgname'))