aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Build-targets.md
diff options
context:
space:
mode:
authorVedran Miletić <vedran@miletic.net>2020-04-06 11:21:23 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2020-04-07 17:24:13 +0300
commite034ebd1537a72d550a699c0d155f19f4791bdc0 (patch)
tree330c0f6e40e73661d2feb5b6b4ca1c2c858822a8 /docs/markdown/Build-targets.md
parenta1117487673b6db9d7fa0fa89ab488ffe8c6e6ee (diff)
downloadmeson-e034ebd1537a72d550a699c0d155f19f4791bdc0.zip
meson-e034ebd1537a72d550a699c0d155f19f4791bdc0.tar.gz
meson-e034ebd1537a72d550a699c0d155f19f4791bdc0.tar.bz2
docs: Mention library command as well [skip ci]
Diffstat (limited to 'docs/markdown/Build-targets.md')
-rw-r--r--docs/markdown/Build-targets.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/markdown/Build-targets.md b/docs/markdown/Build-targets.md
index 754e659..83f959f 100644
--- a/docs/markdown/Build-targets.md
+++ b/docs/markdown/Build-targets.md
@@ -7,10 +7,10 @@ short-description: Definition of build targets
Meson provides four kinds of build targets: executables, libraries
(which can be set to be built as static or shared or both of them at
the build configuration time), static libraries, and shared libraries.
-They are created with the commands `executable`, `static_library` and
-`shared_library`, respectively. All objects created in this way are
-**immutable**. That is, you can not change any aspect of them after
-they have been constructed. This ensures that all information
+They are created with the commands `executable`, `library`,
+`static_library` and `shared_library`, respectively. All objects created
+in this way are **immutable**. That is, you can not change any aspect of
+them after they have been constructed. This ensures that all information
pertaining to a given build target is specified in one well defined
place.