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.
13 lines
413 B
13 lines
413 B
project('outputs not matching install_dirs') |
|
|
|
gen = find_program('generator.py') |
|
|
|
if meson.backend() != 'ninja' |
|
error('MESON_SKIP_TEST test is only for the ninja backend') |
|
endif |
|
|
|
custom_target('too-few-install-dirs', |
|
output : ['toofew.h', 'toofew.c', 'toofew.sh'], |
|
command : [gen, 'toofew', '@OUTDIR@'], |
|
install : true, |
|
install_dir : [join_paths(get_option('prefix'), get_option('includedir')), false])
|
|
|