Actually fix running debug projects that use unit testing

This commit is contained in:
Birunthan Mohanathas
2013-06-13 20:52:15 +03:00
parent d63bb00f94
commit c5e2a7a2cb
3 changed files with 24 additions and 9 deletions

View File

@ -12,9 +12,15 @@
<OutDir>$(IntDir)</OutDir>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="MathParser_Test.cpp" />
<ClCompile Include="PathUtil_Test.cpp" />
<ClCompile Include="StringUtil_Test.cpp" />
<ClCompile Include="MathParser_Test.cpp">
<ExcludedFromBuild>$(ExcludeTestFile)</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="PathUtil_Test.cpp">
<ExcludedFromBuild>$(ExcludeTestFile)</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="StringUtil_Test.cpp">
<ExcludedFromBuild>$(ExcludeTestFile)</ExcludedFromBuild>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Common.vcxproj">