summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/windows_custom_targets.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/snippets/windows_custom_targets.md')
-rw-r--r--docs/markdown/snippets/windows_custom_targets.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/docs/markdown/snippets/windows_custom_targets.md b/docs/markdown/snippets/windows_custom_targets.md
deleted file mode 100644
index cbc2f9d49..000000000
--- a/docs/markdown/snippets/windows_custom_targets.md
+++ /dev/null
@@ -1,22 +0,0 @@
-## Windows.compile_resources CustomTarget
-
-Previously the Windows module only accepted CustomTargets with one output, it
-now accepts them with more than one output, and creates a windows resource
-target for each output. Additionally it now accepts indexes of CustomTargets
-
-```meson
-
-ct = custom_target(
- 'multiple',
- output : ['resource', 'another resource'],
- ...
-)
-
-ct2 = custom_target(
- 'slice',
- output : ['resource', 'not a resource'],
- ...
-)
-
-resources = windows.compile_resources(ct, ct2[0])
-```