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.
22 lines
497 B
22 lines
497 B
3 years ago
|
configure_file(input: 'foo2.in', output: 'foo2.h',
|
||
|
configuration: {'foo': 'bar'},
|
||
|
install_dir: get_option('datadir'),
|
||
|
install: true,
|
||
|
)
|
||
|
custom_target('ct4',
|
||
|
output: ['out1.txt', 'out2.txt'],
|
||
|
command: ['script.py', '@OUTPUT@'],
|
||
|
install_dir: get_option('datadir'),
|
||
|
install: true,
|
||
|
)
|
||
|
install_headers('foo3-devel.h')
|
||
|
install_data('bar2-devel.h',
|
||
|
install_dir: get_option('includedir'),
|
||
|
)
|
||
|
executable('app2', 'main.c',
|
||
|
install: true,
|
||
|
)
|
||
|
both_libraries('both2', 'lib.c',
|
||
|
install: true,
|
||
|
)
|