diff options
author | Rechi <Rechi@users.noreply.github.com> | 2022-11-13 13:16:43 +0100 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2022-11-13 13:16:43 +0100 |
commit | b07e348d6e63a8c286c380d93e15b95c191e4d18 (patch) | |
tree | e200acdca663eddd0581922ec4bd44d3ac83efbc /cmake/platform | |
parent | 670bf7a53ceb7a3f2a566767f6f50f6bb016fe61 (diff) |
[windows] require Windows 8.1 as minimum version
- Windows 7 is unsupported since January 14, 2020
- Windows 8 is unsupported since January 12, 2016
Diffstat (limited to 'cmake/platform')
-rw-r--r-- | cmake/platform/windows/windows.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/platform/windows/windows.cmake b/cmake/platform/windows/windows.cmake index b0c2992d99..b269fe86b5 100644 --- a/cmake/platform/windows/windows.cmake +++ b/cmake/platform/windows/windows.cmake @@ -1,2 +1,3 @@ set(PLATFORM_REQUIRED_DEPS D3DX11Effects) set(APP_RENDER_SYSTEM dx11) +list(APPEND PLATFORM_DEFINES -DNTDDI_VERSION=NTDDI_WINBLUE -D_WIN32_WINNT=_WIN32_WINNT_WINBLUE) |