Browse Source

Disable SSE on 32-bit Windows builds since people might still be using old school chips... x64 builds with SSE since pretty much all AMD64/x86_64 chips have it.

pull/1/head
Adam Ierymenko 12 years ago
parent
commit
b72c2c6358
  1. 2
      windows/ZeroTierOne/ZeroTierOne.vcxproj

2
windows/ZeroTierOne/ZeroTierOne.vcxproj

@ -212,7 +212,7 @@
<AdditionalIncludeDirectories>$(SolutionDir)\ext\bin\libcrypto\include</AdditionalIncludeDirectories>
<PreprocessorDefinitions>ZT_OFFICIAL_RELEASE;ZT_AUTO_UPDATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
<StringPooling>true</StringPooling>
</ClCompile>
<Link>

Loading…
Cancel
Save