aboutsummaryrefslogtreecommitdiff
path: root/manifest-reference.md
diff options
context:
space:
mode:
authorSebastian Ehlert <28669218+awvwgk@users.noreply.github.com>2020-12-18 12:10:13 +0100
committerGitHub <noreply@github.com>2020-12-18 12:10:13 +0100
commitc66f0526dfb29ac576ef45d211b9f836d76fc34f (patch)
treed2e80d6a670fd9b2d82f620abfbb0d6566365092 /manifest-reference.md
parent55db69e2ab29cb70c38cdb3335d4b2eaef6cc63d (diff)
parent2fdd5dde77e84bfa9bd9f20e0bd2b47bdb65c18f (diff)
downloadfpm-c66f0526dfb29ac576ef45d211b9f836d76fc34f.tar.gz
fpm-c66f0526dfb29ac576ef45d211b9f836d76fc34f.zip
Merge pull request #257 from awvwgk/install
Implement fpm-install command
Diffstat (limited to 'manifest-reference.md')
-rw-r--r--manifest-reference.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/manifest-reference.md b/manifest-reference.md
index 008b6b5..8e9f65d 100644
--- a/manifest-reference.md
+++ b/manifest-reference.md
@@ -45,6 +45,9 @@ Every manifest file consists of the following sections:
Project library dependencies
- [*dev-dependencies*](#development-dependencies):
Dependencies only needed for tests
+- [*install*](#installation-configuration):
+ Installation configuration
+
[TOML]: https://toml.io/
@@ -432,3 +435,16 @@ rev = "2f5eaba864ff630ba0c3791126a3f811b6e437f3"
### Development dependencies
Development dependencies allow to declare *dev-dependencies* in the manifest root, which are available to all tests but not exported with the project.
+
+
+## Installation configuration
+
+In the *install* section components for the installation can be selected.
+By default only executables are installed, library projects can set the *library* boolean to also installatation the module files and the archive.
+
+*Example*
+
+```toml
+[install]
+library = true
+```