summaryrefslogtreecommitdiff
path: root/doc/tutorial/third-party-software.org
diff options
context:
space:
mode:
authorOliver Reiche <oliver.reiche@huawei.com>2022-12-08 17:43:27 +0100
committerOliver Reiche <oliver.reiche@huawei.com>2022-12-08 18:35:04 +0100
commit163dcfa7175eff7561dc3c37f28c736cf36cac75 (patch)
tree046639c3d04b465264609886c14298588faa4280 /doc/tutorial/third-party-software.org
parent971214a0740049943fd09ff03dd00b7ccd00537f (diff)
downloadjustbuild-163dcfa7175eff7561dc3c37f28c736cf36cac75.tar.gz
tutorial: Use newly introduced private-deps for fmt
Diffstat (limited to 'doc/tutorial/third-party-software.org')
-rw-r--r--doc/tutorial/third-party-software.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tutorial/third-party-software.org b/doc/tutorial/third-party-software.org
index 2d3bef84..e088bc4b 100644
--- a/doc/tutorial/third-party-software.org
+++ b/doc/tutorial/third-party-software.org
@@ -163,7 +163,7 @@ therefore need to introduce an additional binding ~"format"~ for it:
}
#+END_SRC
-This ~"format"~ binding can you be used to add a new dependency in
+This ~"format"~ binding can you be used to add a new private dependency in
~greet/TARGETS~:
#+SRCNAME: greet/TARGETS
@@ -174,7 +174,7 @@ This ~"format"~ binding can you be used to add a new dependency in
, "hdrs": ["greet.hpp"]
, "srcs": ["greet.cpp"]
, "stage": ["greet"]
- , "deps": [["@", "format", "", "fmt"]]
+ , "private-deps": [["@", "format", "", "fmt"]]
}
}
#+END_SRC