Skip to content

Commit 70bea77

Browse files
committed
Set the UseDebugLibraries property by default in the project template
1 parent e2b71bb commit 70bea77

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

GoogleTestAdapter/GoogleTestProjectTemplate/GoogleTest.vcxproj

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,18 @@
2828
<CharacterSet>Unicode</CharacterSet>
2929
</PropertyGroup>
3030
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
31+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
32+
<UseDebugLibraries>true</UseDebugLibraries>
33+
</PropertyGroup>
34+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
35+
<UseDebugLibraries>true</UseDebugLibraries>
36+
</PropertyGroup>
37+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
38+
<UseDebugLibraries>false</UseDebugLibraries>
39+
</PropertyGroup>
40+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
41+
<UseDebugLibraries>false</UseDebugLibraries>
42+
</PropertyGroup>
3143
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
3244
<ImportGroup Label="ExtensionSettings" />
3345
<ImportGroup Label="Shared" />

0 commit comments

Comments
 (0)