summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorJesse Natalie <jenatali@microsoft.com>2022-07-08 11:16:44 -0700
committerMarge Bot <emma+marge@anholt.net>2022-07-15 21:31:51 +0000
commitc002bbeb2f7a1bf2d5c020abdddcf25909c447b6 (patch)
tree6265d1e88e273bb44ca06760ac955de1e4074d21 /meson_options.txt
parent62f79f9ec1a28613257455ce85c8a180ba6dc65f (diff)
util: Add a Win32 futex impl
This uses APIs that are not available on Win7. Since this is a build-time configuration, and since we can't use the SDK version as an indicator (since you can support Win7 via new SDKs), a new option is added to allow disabling it, to maintain Win7 support if desired. Reviewed-by: Jose Fonseca <jfonseca@vmware.com> Reviewed-by: Yonggang Luo <luoyonggang@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17431>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 7a5622101e9..b8f753e2e1a 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -547,4 +547,12 @@ option(
type : 'string',
value : '',
description : 'Override build id for shader cache keys (hex string). Can be extracted with readelf -x .note.gnu.build-id'
-) \ No newline at end of file
+)
+option(
+ 'min-windows-version',
+ type : 'integer',
+ min : 7,
+ max : 11,
+ value : 8,
+ description : 'Minimum Windows version to support. Defaults to Windows 8.'
+)