1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

FileChooser: Fix build compatibility issue with MinGW

The recent IFileChooser update to the JUCE FileChooser meant that
Windows build machines must be running Vista or newer.

For compilers other than MinGW, we were already requiring that the build
machine must be running Windows 8 or newer.
This commit is contained in:
reuk 2020-10-26 11:01:30 +00:00
parent 30bca72e6f
commit 6e02c45d37

View file

@ -132,7 +132,7 @@
#define STRICT 1
#define WIN32_LEAN_AND_MEAN 1
#if JUCE_MINGW
#define _WIN32_WINNT 0x0501
#define _WIN32_WINNT 0x0600
#else
#define _WIN32_WINNT 0x0602
#endif