Browse Source

Update TestEthereum.vcxproj

cl-refactor
Tim Hughes 11 years ago
parent
commit
e0036b5f27
  1. 2
      windows/LibEthereum.props
  2. 6
      windows/TestEthereum.vcxproj
  3. 2
      windows/TestEthereum.vcxproj.filters

2
windows/LibEthereum.props

@ -11,7 +11,7 @@
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<DisableSpecificWarnings>4068;4127;4258;4505;4512;4706</DisableSpecificWarnings>
<DisableSpecificWarnings>4068;4127;4258;4505;4512;4706;4714</DisableSpecificWarnings>
<WarningLevel>Level4</WarningLevel>
<TreatWarningAsError>true</TreatWarningAsError>
<MinimalRebuild>false</MinimalRebuild>

6
windows/TestEthereum.vcxproj

@ -88,6 +88,7 @@
<IntrinsicFunctions>true</IntrinsicFunctions>
<OpenMPSupport>true</OpenMPSupport>
<ForcedIncludeFiles>stdafx.h</ForcedIncludeFiles>
<ExceptionHandling>Async</ExceptionHandling>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
@ -103,6 +104,7 @@
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<IntrinsicFunctions>true</IntrinsicFunctions>
<ForcedIncludeFiles>stdafx.h</ForcedIncludeFiles>
<ExceptionHandling>Async</ExceptionHandling>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
@ -121,6 +123,7 @@
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<OpenMPSupport>true</OpenMPSupport>
<ForcedIncludeFiles>stdafx.h</ForcedIncludeFiles>
<ExceptionHandling>Async</ExceptionHandling>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
@ -142,6 +145,7 @@
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<OpenMPSupport>true</OpenMPSupport>
<ForcedIncludeFiles>stdafx.h</ForcedIncludeFiles>
<ExceptionHandling>Async</ExceptionHandling>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
@ -156,6 +160,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\test\boostTest.cpp" />
<ClCompile Include="..\test\crypto.cpp" />
<ClCompile Include="..\test\dagger.cpp" />
<ClCompile Include="..\test\hexPrefix.cpp" />
@ -166,6 +171,7 @@
<ClCompile Include="..\test\state.cpp" />
<ClCompile Include="..\test\trie.cpp" />
<ClCompile Include="..\test\TrieHash.cpp" />
<ClCompile Include="..\test\txTest.cpp" />
<ClCompile Include="..\test\vm.cpp" />
<ClCompile Include="stdafx.cpp">
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>

2
windows/TestEthereum.vcxproj.filters

@ -15,6 +15,8 @@
<ClCompile Include="..\test\main.cpp" />
<ClCompile Include="..\test\MemTrie.cpp" />
<ClCompile Include="..\test\peer.cpp" />
<ClCompile Include="..\test\boostTest.cpp" />
<ClCompile Include="..\test\txTest.cpp" />
</ItemGroup>
<ItemGroup>
<Filter Include="Windows">

Loading…
Cancel
Save