Skip to content

Instantly share code, notes, and snippets.

@lawrence-laz
Created May 18, 2022 07:58
Show Gist options
  • Save lawrence-laz/f5934e0e78e25a285367b600d518417d to your computer and use it in GitHub Desktop.
Save lawrence-laz/f5934e0e78e25a285367b600d518417d to your computer and use it in GitHub Desktop.
<Project>
<!-- https://docs.microsoft.com/en-us/cpp/error-messages/compiler-errors-1/fatal-error-c1047?view=msvc-170 -->
<PropertyGroup>
<!-- Disabling this allows to keep binary compatibility between different c++ compiler versions. -->
<WholeProgramOptimization>false</WholeProgramOptimization>
</PropertyGroup>
<ItemDefinitionGroup>
<Link>
<!-- Disabling this allows to keep binary compatibility between different c++ compiler versions. -->
<LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration>
</Link>
</ItemDefinitionGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment