diff options
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 92a7aed..0ddd4a9 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -349,7 +349,8 @@ keyword arguments. - `compile_args`, compile arguments to use - `dependencies`, other dependencies needed to use this dependency - - `include_directories`, the directories to add to header search path + - `include_directories`, the directories to add to header search path, + must be include_directories objects or, since 0.50.0, plain strings - `link_args`, link arguments to use - `link_with`, libraries to link against - `link_whole`, libraries to link fully, same as [`executable`](#executable) @@ -530,7 +531,8 @@ be passed to [shared and static libraries](#library). adds the current source and build directories to the include path, defaults to `true`, since 0.42.0 - `include_directories` one or more objects created with the - `include_directories` function + `include_directories` function, or, since 0.50.0, strings, which + will be transparently expanded to include directory objects - `install`, when set to true, this executable should be installed - `install_dir` override install directory for this file. The value is relative to the `prefix` specified. F.ex, if you want to install |