Exclude rc_client_external from Windows ARM builds (until they support raintegration)

This commit is contained in:
Henrik Rydgård 2025-03-27 08:56:30 +01:00
parent dd7cac5cdc
commit 24fd18b414

View file

@ -55,7 +55,12 @@
<ClCompile Include="..\rcheevos\src\rcheevos\trigger.c" />
<ClCompile Include="..\rcheevos\src\rcheevos\value.c" />
<ClCompile Include="..\rcheevos\src\rc_client.c" />
<ClCompile Include="..\rcheevos\src\rc_client_external.c" />
<ClCompile Include="..\rcheevos\src\rc_client_external.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\rcheevos\src\rc_client_raintegration.c" />
<ClCompile Include="..\rcheevos\src\rc_compat.c" />
<ClCompile Include="..\rcheevos\src\rc_util.c" />