Author: rhuijben Date: Wed Oct 4 15:15:30 2017 New Revision: 1811088 URL: http://svn.apache.org/viewvc?rev=1811088&view=rev Log: Support Visual Studio 2017 via the SCons specific version number '14.1', which some of the Visual Studio tools handle as the version after '14.0' (read: 15.0). I hope they start using proper version numbers with te next VS release.
* SConstruct Use 14.1 for Visual Studio 15.0 aka 2017. Modified: serf/trunk/SConstruct Modified: serf/trunk/SConstruct URL: http://svn.apache.org/viewvc/serf/trunk/SConstruct?rev=1811088&r1=1811087&r2=1811088&view=diff ============================================================================== --- serf/trunk/SConstruct (original) +++ serf/trunk/SConstruct Wed Oct 4 15:15:30 2017 @@ -147,7 +147,7 @@ if sys.platform == 'win32': EnumVariable('MSVC_VERSION', "Visual C++ to use for building", None, - allowed_values=('15.0', '14.0', '12.0', + allowed_values=('15.0', '14.1', '14.0', '12.0', '11.0', '10.0', '9.0', '8.0', '6.0'), map={'2005' : '8.0', '2008' : '9.0', @@ -155,7 +155,7 @@ if sys.platform == 'win32': '2012' : '11.0', '2013' : '12.0', '2015' : '14.0', - '2017' : '15.0' + '2017' : '14.1', }), # We always documented that we handle an install layout, but in fact we