diff options
author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2014-03-04 11:16:39 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2014-03-04 11:16:39 -0800 |
commit | 5581339d5b111ad67b3f094c994e6de03ff51fd7 (patch) | |
tree | 472621590f9105dee39a7321fb57368e346e80fa /windows/ZeroTierOne | |
parent | 78f3966d664e12b48bd82d355aeaa2af935fcd6d (diff) | |
download | infinitytier-5581339d5b111ad67b3f094c994e6de03ff51fd7.tar.gz infinitytier-5581339d5b111ad67b3f094c994e6de03ff51fd7.zip |
Build with /MT on Windows so we can stop having to install a redistributable... makes installer less noisy but unfortunately makes binary bigger. Oh well.
Diffstat (limited to 'windows/ZeroTierOne')
-rw-r--r-- | windows/ZeroTierOne/ZeroTierOne.vcxproj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/windows/ZeroTierOne/ZeroTierOne.vcxproj b/windows/ZeroTierOne/ZeroTierOne.vcxproj index 49ac8721..be2121aa 100644 --- a/windows/ZeroTierOne/ZeroTierOne.vcxproj +++ b/windows/ZeroTierOne/ZeroTierOne.vcxproj @@ -211,6 +211,9 @@ <SDLCheck>true</SDLCheck> <AdditionalIncludeDirectories>$(SolutionDir)\ext\bin\libcrypto\include</AdditionalIncludeDirectories> <PreprocessorDefinitions>ZT_OFFICIAL_RELEASE;ZT_AUTO_UPDATE;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> + <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet> + <StringPooling>true</StringPooling> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> @@ -229,6 +232,9 @@ <SDLCheck>true</SDLCheck> <AdditionalIncludeDirectories>$(SolutionDir)\ext\bin\libcrypto\include</AdditionalIncludeDirectories> <PreprocessorDefinitions>ZT_OFFICIAL_RELEASE;ZT_AUTO_UPDATE;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <RuntimeLibrary>MultiThreaded</RuntimeLibrary> + <EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet> + <StringPooling>true</StringPooling> </ClCompile> <Link> <GenerateDebugInformation>true</GenerateDebugInformation> |