The Meson Build System
http://mesonbuild.com/
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.
7 lines
335 B
7 lines
335 B
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')
|
|
|