diff options
author | George Hazan <ghazan@miranda.im> | 2017-10-09 20:00:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-10-09 20:00:58 +0300 |
commit | eaa4da651386397689b4054ca63425cd53b7973a (patch) | |
tree | 8df352a1d46b44f5a581b4a49663ebdb8e500116 /build/vc.common | |
parent | 85f20195ec2408938c5c06821914d1cc4dce1b41 (diff) |
VS2010 has no instruction set option
Diffstat (limited to 'build/vc.common')
-rw-r--r-- | build/vc.common/common.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/vc.common/common.props b/build/vc.common/common.props index 1fb6cf1ddf..2c99a51731 100644 --- a/build/vc.common/common.props +++ b/build/vc.common/common.props @@ -80,7 +80,7 @@ <ItemDefinitionGroup Condition="'$(Platform)'=='Win32'">
<ClCompile>
- <EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
+ <EnableEnhancedInstructionSet Condition="'$(VisualStudioVersion)' != '10.0'">NoExtensions</EnableEnhancedInstructionSet>
</ClCompile>
<Link>
<AdditionalLibraryDirectories>$(ProjectDir)..\..\libs\win32;$(ProjectDir)..\..\..\boost\stage\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|