aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/customimplicit.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-05-02 12:42:42 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2021-05-02 12:42:42 +0300
commit753954be868ed78b3e339e8811fd1d29eb2af237 (patch)
tree46ede995e85aa7523f052b653b1aea663adf08d5 /docs/markdown/snippets/customimplicit.md
parentb2687e86c87a1dd2e254aeaf3355b3e98b82b730 (diff)
downloadmeson-753954be868ed78b3e339e8811fd1d29eb2af237.zip
meson-753954be868ed78b3e339e8811fd1d29eb2af237.tar.gz
meson-753954be868ed78b3e339e8811fd1d29eb2af237.tar.bz2
Release 0.58.0.0.58.0
Diffstat (limited to 'docs/markdown/snippets/customimplicit.md')
-rw-r--r--docs/markdown/snippets/customimplicit.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/docs/markdown/snippets/customimplicit.md b/docs/markdown/snippets/customimplicit.md
deleted file mode 100644
index 8956c69..0000000
--- a/docs/markdown/snippets/customimplicit.md
+++ /dev/null
@@ -1,17 +0,0 @@
-## Do not add custom target dir to header path if `implicit_include_directories` is `false`
-
-If you do the following:
-
-```meson
-# in some subdirectory
-gen_h = custom_target(...)
-# in some other directory
-executable('foo', 'foo.c', gen_h)
-```
-
-then the output directory of the custom target is automatically added
-to the header search path. This is convenient, but sometimes it can
-lead to problems. Starting with this version, the directory will no
-longer be put in the search path if the target has
-`implicit_include_directories: false`. In these cases you need to set
-up the path manually with `include_directories`.