diff options
-rw-r--r-- | docs/markdown/Reference-manual.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 82f0b5a..5cfaf0e 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -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 |