Build: Fix xxhash on non-Windows

This commit is contained in:
Connor McLaughlin
2020-12-26 00:41:59 +10:00
parent b755798c2a
commit af3b2b0e15
3 changed files with 21 additions and 4 deletions

View File

@ -52,11 +52,21 @@
</ItemGroup>
<ItemGroup>
<ClCompile Include="src\xxhash.c" />
<ClCompile Include="src\xxh_x86dispatch.c" />
<ClCompile Include="src\xxh_x86dispatch.c">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseLTCG|ARM64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugFast|ARM64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">true</ExcludedFromBuild>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="include\xxhash.h" />
<ClInclude Include="include\xxh_x86dispatch.h" />
<ClInclude Include="include\xxh_x86dispatch.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='ReleaseLTCG|ARM64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugFast|ARM64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">true</ExcludedFromBuild>
</ClInclude>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{09553C96-9F39-49BF-8AE6-7ACBD07C410C}</ProjectGuid>