aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/unit/26 install umask/meson.build
blob: 225f71c67cecd0f9ca8ff11af444bc01f144154e (plain)
1
2
3
4
5
6
7
project('install umask', 'c')
executable('prog', 'prog.c', install : true)
install_headers('sample.h')
install_man('prog.1')
install_data('datafile.cat', install_dir : get_option('prefix') + '/share')
install_subdir('subdir', install_dir : get_option('prefix') + '/share')
meson.add_install_script('myinstall.py', 'share', 'file.dat')