diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-12-30 10:40:25 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-10 21:48:23 +0000 |
commit | 8f1d9bb7b0cca265276c46caf928c047870b34f1 (patch) | |
tree | 01e3192d369e532f48ad054be5feca51abec7ea4 /docs/markdown | |
parent | a8c138ebc1f9005f7c32c78eae67a6289130e9c4 (diff) | |
download | meson-8f1d9bb7b0cca265276c46caf928c047870b34f1.zip meson-8f1d9bb7b0cca265276c46caf928c047870b34f1.tar.gz meson-8f1d9bb7b0cca265276c46caf928c047870b34f1.tar.bz2 |
cmake: add PATH logic to preliminary dep check (fixes #8133)
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Contributing.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/markdown/Contributing.md b/docs/markdown/Contributing.md index c9cebee..46fe57f 100644 --- a/docs/markdown/Contributing.md +++ b/docs/markdown/Contributing.md @@ -219,8 +219,12 @@ Exanple `test.json`: #### env The `env` key contains a dictionary which specifies additional -environment variables to be set during the configure step of the test. `@ROOT@` -is replaced with the absolute path of the source directory. +environment variables to be set during the configure step of the test. + +There is some basic support for configuring the string with the `@<VAR>@` syntax: + +- `@ROOT@`: absolute path of the source directory +- `@PATH@`: current value of the `PATH` env variable #### installed |