aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorePirat <epirat07@gmail.com>2019-12-12 14:10:36 +0100
committerMichael Hirsch, Ph.D <10931741+scivision@users.noreply.github.com>2019-12-12 10:44:12 -0500
commit0bf8862bebf6057b3020443cee4238d6db5638d0 (patch)
tree0ff548054e34027468be6d9ff29249e9c989b553
parent17dd9e5bffd42c3ad6c2dff1f15639d6adf31e1c (diff)
downloadmeson-0bf8862bebf6057b3020443cee4238d6db5638d0.zip
meson-0bf8862bebf6057b3020443cee4238d6db5638d0.tar.gz
meson-0bf8862bebf6057b3020443cee4238d6db5638d0.tar.bz2
docs: Fix wrong example for shaderc dependency [skip ci]
The example is meant for wxWidgets not Shaderc.
-rw-r--r--docs/markdown/Dependencies.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md
index 39b7ccb..e029a84 100644
--- a/docs/markdown/Dependencies.md
+++ b/docs/markdown/Dependencies.md
@@ -540,18 +540,6 @@ Meson substitutes `modules` to `wx-config` invocation, it generates
- `compile_args` using `wx-config --cxxflags $modules...`
- `link_args` using `wx-config --libs $modules...`
-## Shaderc
-
-*(added 0.51.0)*
-
-Shaderc currently does not ship with any means of detection. Nevertheless, Meson
-can try to detect it using `pkg-config`, but will default to looking for the
-appropriate library manually. If the `static` keyword argument is `true`,
-`shaderc_combined` is preferred. Otherwise, `shaderc_shared` is preferred. Note
-that it is not possible to obtain the shaderc version using this method.
-
-`method` may be `auto`, `pkg-config` or `system`.
-
### Example
```meson
@@ -568,6 +556,18 @@ $ wx-config --cxxflags std stc
$ wx-config --libs std stc
```
+## Shaderc
+
+*(added 0.51.0)*
+
+Shaderc currently does not ship with any means of detection. Nevertheless, Meson
+can try to detect it using `pkg-config`, but will default to looking for the
+appropriate library manually. If the `static` keyword argument is `true`,
+`shaderc_combined` is preferred. Otherwise, `shaderc_shared` is preferred. Note
+that it is not possible to obtain the shaderc version using this method.
+
+`method` may be `auto`, `pkg-config` or `system`.
+
<hr>
<a name="footnote1">1</a>: They may appear to be case-insensitive, if the
underlying file system happens to be case-insensitive.