diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-21 16:46:37 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-21 16:46:37 +0000 |
commit | 78f36745d03f03d4772e09720eef976cff5a4d9b (patch) | |
tree | a942a3129ca10b99e7c00c2caeccc112da7d3f6e | |
parent | c6ccbf04ae8bb7de2ec919bfb22104864adc1c0d (diff) |
fix for the missing VisualStudioVersion macro in localized VS2010 versions
git-svn-id: http://svn.miranda-ng.org/main/trunk@14303 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-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 4348ad800b..65d2fdfc9b 100644 --- a/build/vc.common/common.props +++ b/build/vc.common/common.props @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="UserMacros">
+ <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<CommonLibDir Condition="'$(VisualStudioVersion)' == '10.0'">$(ProjectDir)..\..\bin10\lib</CommonLibDir>
<CommonLibDir Condition="'$(VisualStudioVersion)' == '12.0'">$(ProjectDir)..\..\bin12\lib</CommonLibDir>
</PropertyGroup>
|