1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Build: Update minimum build requirements for VS 2015

This commit is contained in:
reuk 2021-06-21 11:03:46 +01:00
parent 2096a6e50f
commit ecfa339032
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
2 changed files with 3 additions and 3 deletions

View file

@ -59,7 +59,7 @@ of the target you wish to build.
#### Building JUCE Projects
- __macOS/iOS__: macOS 10.11 and Xcode 7.3.1
- __Windows__: Windows 8.1 and Visual Studio 2015 64-bit
- __Windows__: Windows 8.1 and Visual Studio 2015 Update 3 64-bit
- __Linux__: GCC 4.8 (for a full list of dependencies, see
[here](/docs/Linux%20Dependencies.md)).
- __Android__: Android Studio on Windows, macOS or Linux

View file

@ -80,8 +80,8 @@
// MSVC
#if JUCE_MSVC
#if _MSC_VER < 1900 // VS2015
#error "JUCE requires Visual Studio 2015 or later"
#if _MSC_FULL_VER < 190024210 // VS2015
#error "JUCE requires Visual Studio 2015 Update 3 or later"
#endif
#ifndef JUCE_EXCEPTIONS_DISABLED