MSBuild: Support creating legacy SSE2 builds

This commit is contained in:
Stenzek
2024-09-23 21:11:56 +10:00
parent ed7a9e2f8c
commit b971125469
6 changed files with 263 additions and 120 deletions

View File

@ -6,8 +6,8 @@
<GenerateProjectSpecificOutputFolder>false</GenerateProjectSpecificOutputFolder>
<!-- Use MSVC suffix for MSVC builds, and remove the Clang suffix. -->
<TargetName Condition="$(Configuration.EndsWith(Clang))">$(ProjectName)-$(Platform)-$(Configuration.Replace("-Clang", ""))</TargetName>
<TargetName Condition="!$(Configuration.EndsWith(Clang))">$(ProjectName)-$(Platform)-$(Configuration)-MSVC</TargetName>
<TargetName Condition="$(Configuration.Contains(Clang))">$(ProjectName)-$(Platform)-$(Configuration.Replace("-Clang", ""))</TargetName>
<TargetName Condition="!$(Configuration.Contains(Clang))">$(ProjectName)-$(Platform)-$(Configuration)-MSVC</TargetName>
<ConfigurationType>Application</ConfigurationType>
</PropertyGroup>