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:
parent
30bca72e6f
commit
6e02c45d37
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue