Skip to content

Commit

Permalink
meson: set minimum win version to 7
Browse files Browse the repository at this point in the history
I think setting it at 8 was accidental? This matches the installer, so we should be consistent throughout
  • Loading branch information
CoffeeFlux committed Jan 16, 2021
1 parent 25a62f4 commit a2da161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a2da161

Please sign in to comment.