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.
14 lines
344 B
14 lines
344 B
project('man install', 'c') |
|
m1 = install_man('foo.1') |
|
m2 = install_man('bar.2') |
|
m3 = install_man('foo.fr.1', locale: 'fr') |
|
install_man('vanishing/vanishing.2') |
|
subdir('vanishing') |
|
|
|
cdata = configuration_data() |
|
cdata.set('TODAY', '$this_day') |
|
b1 = configure_file(input : 'baz.1.in', |
|
output : 'baz.1', |
|
configuration : cdata) |
|
|
|
install_man(b1)
|
|
|