aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-20 18:34:23 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2017-05-21 16:18:33 +0300
commita2a28c72ea44890fede1b26a264d05f7108b41eb (patch)
tree115876b605c3e2ac86085c77d99617b29098c416 /docs/markdown
parent6eb75a04a1fc1bdc47927d40029e317a65e07571 (diff)
downloadmeson-a2a28c72ea44890fede1b26a264d05f7108b41eb.zip
meson-a2a28c72ea44890fede1b26a264d05f7108b41eb.tar.gz
meson-a2a28c72ea44890fede1b26a264d05f7108b41eb.tar.bz2
Remove extra temporary file from docs.
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/tmp.json29
1 files changed, 0 insertions, 29 deletions
diff --git a/docs/markdown/tmp.json b/docs/markdown/tmp.json
deleted file mode 100644
index 190d12f..0000000
--- a/docs/markdown/tmp.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "functions": {
- "add_global_arguments": {
- "doc": ["Adds the positional arguments to the compiler command line for the language specified in `language` keyword argument. Note that there is no way to remove an argument set in this way.",
- "If you have an argument that is only used in a subset of targets, you have to specify it in per-target flags.",
- "The arguments are used in all compiler invocations with the exception of compile tests, because you might need to run a compile test with and without the argument in question. For this reason only the arguments explicitly specified are used during compile tests.",
- "**Note:** Usually you should use `add_project_arguments` instead, because that works even when you project is used as a subproject.",
- "**Note:** You must pass always arguments individually `arg1, arg2, ...` rather than as a string `'arg1 arg2', ...`"]
- "arguments": [
- {"name": "args1", "doc": "Some argument"}
- ]
- }
- }
- "objects": [
- "meson": {
- "doc": ["The `meson` object allows you to introspect various properties of the system. This object is always mapped in the `meson` variable. It has the following methods."]
- "methods": [
- "get_compiler": {
- "arguments": [
- {"name": "language", "doc": "returns [an object describing a compiler](#compiler-object), takes one positional argument which is the language to use. ",
- "It also accepts one keyword argument, `native` which when set to true makes Meson return the compiler for the build machine (the \"native\" compiler)",
- "and when false it returns the host compiler (the \"cross\" compiler). If `native` is omitted, Meson returns the \"cross\" compiler if we're currently",
- " cross-compiling and the \"native\" compiler if we're not."}
- ]
- }
- ]
- }
- ]
-}