aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/winsubsystem.md
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-10-30 10:25:24 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2020-10-30 10:25:24 +0200
commitf16d31607eb3cd0f281758bd0944e206ef6be387 (patch)
tree0b711c4b63a55049eecfbaff95bf2ea386a4956e /docs/markdown/snippets/winsubsystem.md
parent712cbe056811ebdf0d7358ba07a874717a1c736f (diff)
downloadmeson-f16d31607eb3cd0f281758bd0944e206ef6be387.zip
meson-f16d31607eb3cd0f281758bd0944e206ef6be387.tar.gz
meson-f16d31607eb3cd0f281758bd0944e206ef6be387.tar.bz2
Bump version number for release. This is the 10 000th commit!0.56.0
Diffstat (limited to 'docs/markdown/snippets/winsubsystem.md')
-rw-r--r--docs/markdown/snippets/winsubsystem.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/docs/markdown/snippets/winsubsystem.md b/docs/markdown/snippets/winsubsystem.md
deleted file mode 100644
index a7d589f..0000000
--- a/docs/markdown/snippets/winsubsystem.md
+++ /dev/null
@@ -1,22 +0,0 @@
-## Add support for all Windows subsystem types
-
-It is now possible to build things like Windows kernel drivers with
-the new `win_subsystem` keyword argument. This replaces the old
-`gui_app` keyword argument, which is now deprecated. You should update
-your project to use the new style like this:
-
-```meson
-# Old way
-executable(..., gui_app: 'true')
-# New way
-executable(..., win_subsystem: 'windows')
-```
-
-The argument supports versioning [as described on MSDN
-documentation](https://docs.microsoft.com/en-us/cpp/build/reference/subsystem-specify-subsystem).
-Thus to build a Windows kernel driver with a specific version you'd
-write something like this:
-
-```meson
-executable(..., win_subsystem: 'native,6.02')
-```