CI/Windows: Use Clang-CL instead of MSVC

This commit is contained in:
Stenzek
2023-12-18 15:54:32 +10:00
parent 21bbe5c76c
commit cf45047463
4 changed files with 10 additions and 43 deletions

View File

@ -4,7 +4,10 @@
<IntDir>$(SolutionDir)build\$(ProjectName)-$(Platform)-$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)bin\$(Platform)\</OutDir>
<GenerateProjectSpecificOutputFolder>false</GenerateProjectSpecificOutputFolder>
<TargetName>$(ProjectName)-$(Platform)-$(Configuration)</TargetName>
<!-- 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>
<ConfigurationType>Application</ConfigurationType>
</PropertyGroup>