If a configure_file has an install_dir set, the supported install argument is ignored, while this should have actually higher priority than the install_dir itself. Also check that correct types are used for `install` and `install_dir`. Add test to verify this. Fixes #3983pull/4768/head
parent
49557e15ec
commit
95c1cdf776
5 changed files with 33 additions and 2 deletions
@ -0,0 +1,9 @@ |
||||
project('invalid configura file') |
||||
|
||||
configure_file( |
||||
configuration : configuration_data(), |
||||
input : 'input', |
||||
output : 'output', |
||||
install_dir : '', |
||||
install : true, |
||||
) |
Loading…
Reference in new issue