Clarify multi-component source directory behavior of install_subdir()

This commit is contained in:
Aleksey Filippov 2018-02-04 21:23:40 +00:00
parent 549f9a41e5
commit 13f91840e3
1 changed files with 8 additions and 0 deletions

View File

@ -787,6 +787,7 @@ The following keyword arguments are supported:
Names are interpreted as paths relative to the `subdir_name` location.
- `install_dir`: the location to place the installed subdirectory.
- `strip_directory`: install directory contents. `strip_directory=false` by default.
If `strip_directory=false` only last component of source path is used.
Since 0.45.0
For a given directory `foo`:
@ -813,6 +814,13 @@ share/
file2
```
`install_subdir('foo/bar', install_dir : 'share', stripe_directory : false)` creates
```
share/
bar/
file1
```
### is_variable()
``` meson