Skip to content

Commit

Permalink
Add support for VC++ 2015 (VC14).
Browse files Browse the repository at this point in the history
We had tried to support the next version, but we had assumed that
the version number would be 13.  Microsoft decided it's 14 instead.
  • Loading branch information
lballabio committed Jul 7, 2015
1 parent 55b6091 commit f5331af
Show file tree
Hide file tree
Showing 4 changed files with 367 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile.am
Expand Up @@ -30,6 +30,7 @@ EXTRA_DIST = \
QuantLib_vc10.sln \
QuantLib_vc11.sln \
QuantLib_vc12.sln \
QuantLib_vc14.sln \
QuantLib.vcxproj \
QuantLib.vcxproj.filters \
Readme.txt \
Expand Down
2 changes: 2 additions & 0 deletions QuantLib.props
Expand Up @@ -8,11 +8,13 @@
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioVersion)' == '13.0'">v130</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioVersion)' == '14.0'">v140</PlatformToolset>
</PropertyGroup>
<PropertyGroup Label="UserMacros">
<qlCompilerTag Condition="'$(VisualStudioVersion)' == '10.0'">vc100</qlCompilerTag>
<qlCompilerTag Condition="'$(VisualStudioVersion)' == '11.0'">vc110</qlCompilerTag>
<qlCompilerTag Condition="'$(VisualStudioVersion)' == '12.0'">vc120</qlCompilerTag>
<qlCompilerTag Condition="'$(VisualStudioVersion)' == '13.0'">vc130</qlCompilerTag>
<qlCompilerTag Condition="'$(VisualStudioVersion)' == '14.0'">vc140</qlCompilerTag>
</PropertyGroup>
</Project>

0 comments on commit f5331af

Please sign in to comment.