mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 15:48:51 +00:00
msbuild: explicitly disable incremental linking
Previously the default was used, which would enable incremental linking for debug builds.
This commit is contained in:
parent
969ea6e4f5
commit
5d334d4756
1 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,8 @@
|
||||||
<IntDir>$(BuildRootDir)$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
<IntDir>$(BuildRootDir)$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
||||||
<OutDir>$(IntDir)bin\</OutDir>
|
<OutDir>$(IntDir)bin\</OutDir>
|
||||||
<TargetName Condition="'$(ConfigurationType)'=='Application'">$(ProjectName)$(TargetSuffix)</TargetName>
|
<TargetName Condition="'$(ConfigurationType)'=='Application'">$(ProjectName)$(TargetSuffix)</TargetName>
|
||||||
|
<!--Set link /INCREMENTAL:NO to remove some entropy from builds (assists with /Brepro)-->
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup>
|
<ItemDefinitionGroup>
|
||||||
<!--ClCompile Base-->
|
<!--ClCompile Base-->
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue