aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/IDE-integration.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-05-04 00:18:00 +0300
committerGitHub <noreply@github.com>2017-05-04 00:18:00 +0300
commit8cb15d728b3cfe9f2b26762ab78490da4628a30d (patch)
tree88ae990db099bb3430a094f6e1e736eb8bbcc063 /docs/markdown/IDE-integration.md
parent108dac5c162eb086b8cce3f4d0575f7282c72c48 (diff)
parentf9de195d7c5a6ed4b02ea7c87137ac6be7f15d9c (diff)
downloadmeson-8cb15d728b3cfe9f2b26762ab78490da4628a30d.zip
meson-8cb15d728b3cfe9f2b26762ab78490da4628a30d.tar.gz
meson-8cb15d728b3cfe9f2b26762ab78490da4628a30d.tar.bz2
Merge pull request #1723 from QuLogic/doc-updates
Minor documentation updates
Diffstat (limited to 'docs/markdown/IDE-integration.md')
-rw-r--r--docs/markdown/IDE-integration.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/IDE-integration.md b/docs/markdown/IDE-integration.md
index 7258f56..d2a3e9c 100644
--- a/docs/markdown/IDE-integration.md
+++ b/docs/markdown/IDE-integration.md
@@ -28,7 +28,7 @@ In order to make code completion work, you need the compiler flags for each comp
ninja -t commands foo
-Note that if the target has dependencies (such as generated sources), then the commands for those show up in this list as well, so you need to do some filtering. Alternatively you can grab every command invocation in the [clang tools db](http://clang.llvm.org/docs/JSONCompilationDatabase.html) format that is written to a file called `compile_commands.json` in the build directory.
+Note that if the target has dependencies (such as generated sources), then the commands for those show up in this list as well, so you need to do some filtering. Alternatively you can grab every command invocation in the [Clang tools db](https://clang.llvm.org/docs/JSONCompilationDatabase.html) format that is written to a file called `compile_commands.json` in the build directory.
The next thing to display is the list of options that can be set. These include build type and so on. Here's how to extract them.