diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Reference-manual.md | 10 | ||||
-rw-r--r-- | docs/markdown/Reference-tables.md | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index ab7605d..5156b5b 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -1076,7 +1076,7 @@ The following keyword arguments are supported: - `install_mode`: the file mode in symbolic format and optionally the owner/uid and group/gid for the installed files. *(Added 0.47.0)* - `strip_directory`: install directory contents. `strip_directory=false` by default. - If `strip_directory=false` only last component of source path is used. + If `strip_directory=true` only the last component of the source path is used. Since 0.45.0 For a given directory `foo`: @@ -1191,9 +1191,9 @@ The keyword arguments for this are the same as for - `name_prefix` the string that will be used as the prefix for the target output filename by overriding the default (only used for - libraries). By default this is `lib` on all platforms and compilers - except with MSVC shared libraries where it is omitted to follow - convention. + libraries). By default this is `lib` on all platforms and compilers, + except for MSVC shared libraries where it is omitted to follow + convention, and Cygwin shared libraries where it is `cyg`. - `name_suffix` the string that will be used as the suffix for the target output filename by overriding the default (see also: [executable()](#executable)). By default, for shared libraries this @@ -1201,7 +1201,7 @@ The keyword arguments for this are the same as for For static libraries, it is `a` everywhere. By convention MSVC static libraries use the `lib` suffix, but we use `a` to avoid a potential name clash with shared libraries which also generate - `xxx.lib` import files. + import libraries with a `lib` suffix. - `rust_crate_type` specifies the crate type for Rust libraries. Defaults to `dylib` for shared libraries and `rlib` for static libraries. diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index f8d690c..dfae339 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -266,7 +266,7 @@ These are the values that can be passed to `dependency` function's ## Compiler and Linker selection variables | Language | Compiler | Linker | Note | -|:-------------:|----------|-----------|---------------------------------------------| +|---------------|----------|-----------|---------------------------------------------| | C | CC | CC_LD | | | C++ | CXX | CXX_LD | | | D | DC | DC_LD | Before 0.54 D_LD* | |