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
301 B
14 lines
301 B
5 years ago
|
project('man install', 'c')
|
||
|
m1 = install_man('foo.1')
|
||
|
m2 = install_man('bar.2')
|
||
|
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)
|