aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/IDE-integration.md
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2018-12-30 23:04:59 +0100
committerDaniel Mensinger <daniel@mensinger-ka.de>2019-01-06 12:19:33 +0100
commitbd8bad46c3fad6e53e259f73408a73eeca920dc7 (patch)
treeb9d676368f645caa0c532067473c0b6485d518a5 /docs/markdown/IDE-integration.md
parent248adbab9ad0775e513b920e9047b2e93664ae2e (diff)
downloadmeson-bd8bad46c3fad6e53e259f73408a73eeca920dc7.zip
meson-bd8bad46c3fad6e53e259f73408a73eeca920dc7.tar.gz
meson-bd8bad46c3fad6e53e259f73408a73eeca920dc7.tar.bz2
Code cleanup and renamed variables
Diffstat (limited to 'docs/markdown/IDE-integration.md')
-rw-r--r--docs/markdown/IDE-integration.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/IDE-integration.md b/docs/markdown/IDE-integration.md
index 81fd43f..d4554ae 100644
--- a/docs/markdown/IDE-integration.md
+++ b/docs/markdown/IDE-integration.md
@@ -40,7 +40,7 @@ The most important file for an IDE is probably `intro-targets.json`. Here each t
"type": "<TYPE>",
"filename": ["list", "of", "generated", "files"],
"build_by_default": true / false,
- "sources": [],
+ "target_sources": [],
"installed": true / false,
}
```
@@ -51,7 +51,7 @@ A target usually generates only one file. However, it is possible for custom tar
### Target sources
-The `intro-sources.json` file stores a list of all source objects of the target. With this information, an IDE can provide code completion for all source files.
+The `intro-targets.json` file also stores a list of all source objects of the target in the `target_sources`. With this information, an IDE can provide code completion for all source files.
```json
{