aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-01-13 21:37:46 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2019-01-15 20:28:12 +0200
commit609ecba37f57ba7394f23bb85da1884d4ab27f69 (patch)
tree5db2ae3a386555b3fe0ccf2acebb42c4454a9caf /docs
parentfff88b354ae8e91cd87a115cf0d3ea851aece740 (diff)
downloadmeson-609ecba37f57ba7394f23bb85da1884d4ab27f69.zip
meson-609ecba37f57ba7394f23bb85da1884d4ab27f69.tar.gz
meson-609ecba37f57ba7394f23bb85da1884d4ab27f69.tar.bz2
mintro: Added `defined_in` key in the targets introspection
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/IDE-integration.md1
-rw-r--r--docs/markdown/snippets/introspect_multiple.md1
2 files changed, 2 insertions, 0 deletions
diff --git a/docs/markdown/IDE-integration.md b/docs/markdown/IDE-integration.md
index 25d262a..32e5e32 100644
--- a/docs/markdown/IDE-integration.md
+++ b/docs/markdown/IDE-integration.md
@@ -53,6 +53,7 @@ for one target is defined as follows:
"name": "Name of the target",
"id": "The internal ID meson uses",
"type": "<TYPE>",
+ "defined_in": "/Path/to/the/targets/meson.build",
"filename": ["list", "of", "generated", "files"],
"build_by_default": true / false,
"target_sources": [],
diff --git a/docs/markdown/snippets/introspect_multiple.md b/docs/markdown/snippets/introspect_multiple.md
index 67f517a..15f0e29 100644
--- a/docs/markdown/snippets/introspect_multiple.md
+++ b/docs/markdown/snippets/introspect_multiple.md
@@ -19,4 +19,5 @@ configuration of the build directory.
Additionlly the format of `meson introspect target` was changed:
- New: the `sources` key. It stores the source files of a target and their compiler parameters.
+ - New: the `defined_in` key. It stores the meson file where a target is defined
- Added new target types (`jar`, `shared module`).