meson: set minimum win version to 7

I think setting it at 8 was accidental? This matches the installer, so we should be consistent throughout
This commit is contained in:
Ryan 2021-01-16 01:26:19 -05:00
parent 25a62f4f12
commit a2da1616c0
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ dataroot = datadir / 'aegisub'
add_project_arguments('-DP_DATA="@0@"'.format(dataroot), language: 'cpp')
if host_machine.system() == 'windows'
add_project_arguments('-DNOMINMAX', '-D_WIN32_WINNT=0x0602', language: 'cpp')
add_project_arguments('-DNOMINMAX', '-D_WIN32_WINNT=0x0601', language: 'cpp')
endif
# MSVC sets this automatically with -MDd, but it has a different meaning on other platforms