aboutsummaryrefslogtreecommitdiff
path: root/tools/buildsteps
diff options
context:
space:
mode:
authorRechi <Rechi@users.noreply.github.com>2022-11-13 13:16:43 +0100
committerRechi <Rechi@users.noreply.github.com>2022-11-13 13:16:43 +0100
commitb07e348d6e63a8c286c380d93e15b95c191e4d18 (patch)
treee200acdca663eddd0581922ec4bd44d3ac83efbc /tools/buildsteps
parent670bf7a53ceb7a3f2a566767f6f50f6bb016fe61 (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 'tools/buildsteps')
-rw-r--r--tools/buildsteps/windows/BuildSetup.bat2
-rw-r--r--tools/buildsteps/windows/make-mingwlibs.sh4
2 files changed, 2 insertions, 4 deletions
diff --git a/tools/buildsteps/windows/BuildSetup.bat b/tools/buildsteps/windows/BuildSetup.bat
index 3a80bbe41c..0c3b0464f4 100644
--- a/tools/buildsteps/windows/BuildSetup.bat
+++ b/tools/buildsteps/windows/BuildSetup.bat
@@ -78,7 +78,6 @@ set WORKSPACE=%base_dir%\kodi-build.%TARGET_PLATFORM%
set EXE="%WORKSPACE%\%buildconfig%\%APP_NAME%.exe"
set PDB="%WORKSPACE%\%buildconfig%\%APP_NAME%.pdb"
- set D3D="%WORKSPACE%\D3DCompile*.DLL"
POPD
ECHO Done!
@@ -128,7 +127,6 @@ set WORKSPACE=%base_dir%\kodi-build.%TARGET_PLATFORM%
md BUILD_WIN32\application
xcopy %EXE% BUILD_WIN32\application > NUL
- xcopy %D3D% BUILD_WIN32\application > NUL
xcopy %base_dir%\userdata BUILD_WIN32\application\userdata /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
copy %base_dir%\LICENSE.md BUILD_WIN32\application > NUL
copy %base_dir%\privacy-policy.txt BUILD_WIN32\application > NUL
diff --git a/tools/buildsteps/windows/make-mingwlibs.sh b/tools/buildsteps/windows/make-mingwlibs.sh
index e5a3594cd9..eccdcc98d6 100644
--- a/tools/buildsteps/windows/make-mingwlibs.sh
+++ b/tools/buildsteps/windows/make-mingwlibs.sh
@@ -46,8 +46,8 @@ else
fi
if [[ $win10 = "no" ]]; then
- export _WIN32_WINNT=0x0600
- export NTDDI_VERSION=0x06000000
+ export _WIN32_WINNT=_WIN32_WINNT_WINBLUE
+ export NTDDI_VERSION=NTDDI_WINBLUE
elif [[ $win10 = "yes" ]]; then
TRIPLET=win10-$TRIPLET
fi