summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/target-type-shared-module.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/snippets/target-type-shared-module.md')
-rw-r--r--docs/markdown/snippets/target-type-shared-module.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/markdown/snippets/target-type-shared-module.md b/docs/markdown/snippets/target-type-shared-module.md
deleted file mode 100644
index e9364a1e9..000000000
--- a/docs/markdown/snippets/target-type-shared-module.md
+++ /dev/null
@@ -1,16 +0,0 @@
-## `target_type` in `build_targets` accepts the value 'shared_module'
-
-The `target_type` keyword argument in `build_target()` now accepts the
-value `'shared_module'`.
-
-The statement
-
-```meson
-build_target(..., target_type: 'shared_module')
-```
-
-is equivalent to this:
-
-```meson
-shared_module(...)
-```