summaryrefslogtreecommitdiff
path: root/docs/markdown/CMake-module.md
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-06-29 20:33:35 -0400
committerEli Schwartz <eschwartz@archlinux.org>2022-06-29 20:33:35 -0400
commite06dd48ad2556f71ae639b877058cf6d13153d78 (patch)
tree263d02afdf3410bc15dcc9e808fbda96d136365e /docs/markdown/CMake-module.md
parent4635fd59375e14d06d0789d8fefe630950217846 (diff)
downloadmeson-e06dd48ad2556f71ae639b877058cf6d13153d78.tar.gz
docs: update various function references to be linkified
Diffstat (limited to 'docs/markdown/CMake-module.md')
-rw-r--r--docs/markdown/CMake-module.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/CMake-module.md b/docs/markdown/CMake-module.md
index 5fc564625..ceaee0b1c 100644
--- a/docs/markdown/CMake-module.md
+++ b/docs/markdown/CMake-module.md
@@ -45,7 +45,7 @@ executable(exe1, ['sources'], dependencies: [cm_lib])
```
The `subproject` method is almost identical to the normal Meson
-`subproject` function. The only difference is that a CMake project
+[[subproject]] function. The only difference is that a CMake project
instead of a Meson project is configured.
The returned `sub_proj` supports the same options as a "normal"
@@ -54,7 +54,7 @@ be accessed with the methods listed [below](#subproject-object).
It is usually enough to just use the dependency object returned by the
`dependency()` method in the build targets. This is almost identical
-to using the `declare_dependency()` object from a normal Meson subproject.
+to using the [[declare_dependency]] object from a normal Meson subproject.
It is also possible to use executables defined in the CMake project as code
generators with the `target()` method: