diff options
author | George Hazan <ghazan@miranda.im> | 2018-09-06 12:39:04 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-09-06 12:39:04 +0300 |
commit | a0fa47ed9d7be66a62f1cd05bc9577588c04a4fe (patch) | |
tree | d462232773e59e8f4989c49d18d7af6f68cb93eb /build | |
parent | 889fb36e39181451133b35689de87769207ef4a4 (diff) |
fix for vs2015 compatibility
Diffstat (limited to 'build')
-rw-r--r-- | build/vc.common/common.props | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/vc.common/common.props b/build/vc.common/common.props index 52d7943315..d124a76473 100644 --- a/build/vc.common/common.props +++ b/build/vc.common/common.props @@ -4,6 +4,7 @@ <RootNamespace>$(ProjectName)</RootNamespace>
<Keyword>Win32Proj</Keyword>
<CharacterSet>Unicode</CharacterSet>
+ <PlatformToolset Condition="'$(VisualStudioVersion)' == '14.0'">v140_xp</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioVersion)' == '15.0'">v141_xp</PlatformToolset>
<IntDir Condition="'$(Platform)'=='Win32'">$(SolutionDir)$(Configuration)\Obj\$(ProjectName)\</IntDir>
<IntDir Condition="'$(Platform)'=='x64'">$(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\</IntDir>
|