aboutsummaryrefslogtreecommitdiff
path: root/manifest-reference.md
diff options
context:
space:
mode:
authorLKedward <laurence.kedward@bristol.ac.uk>2021-03-07 10:59:59 +0000
committerLKedward <laurence.kedward@bristol.ac.uk>2021-03-07 10:59:59 +0000
commit433e408c5de7cbb139cfb35e675f2bf73676467b (patch)
tree7c93767f1a929504d8063a228ac349c645cabb56 /manifest-reference.md
parentbbd5b02fb604d70b257bc82af1fc41293a44be02 (diff)
downloadfpm-433e408c5de7cbb139cfb35e675f2bf73676467b.tar.gz
fpm-433e408c5de7cbb139cfb35e675f2bf73676467b.zip
Update: manifest reference for include-dir entry
Diffstat (limited to 'manifest-reference.md')
-rw-r--r--manifest-reference.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/manifest-reference.md b/manifest-reference.md
index 8e9f65d..564fec0 100644
--- a/manifest-reference.md
+++ b/manifest-reference.md
@@ -188,15 +188,16 @@ Library targets are exported and useable for other projects.
### Library configuration
Defines the exported library target of the project.
-A library is generated if the source directory is found in a project.
-The default source directory is ``src`` but can be modified in the *library* section using the *source-dir* entry.
-Paths for the source directory are given relative to the project root and use ``/`` as path separator on all platforms.
+A library is generated if the source directory or include directory is found in a project.
+The default source and include directories are ``src`` and ``include``; these can be modified in the *library* section using the *source-dir* and *include-dir* entries.
+Paths for the source and include directories are given relative to the project root and use ``/`` as path separator on all platforms.
*Example:*
```toml
[library]
source-dir = "lib"
+include-dir = "inc"
```
#### Custom build script