ARMeilleure.csproj 927 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  4. <DefaultItemExcludes>$(DefaultItemExcludes);._*</DefaultItemExcludes>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  8. <ProjectReference Include="..\Ryujinx.Memory\Ryujinx.Memory.csproj" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <ContentWithTargetPath Include="Native\libs\libarmeilleure-jitsupport.dylib" Condition="'$(RuntimeIdentifier)' == '' OR '$(RuntimeIdentifier)' == 'osx-arm64'">
  12. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  13. <TargetPath>libarmeilleure-jitsupport.dylib</TargetPath>
  14. </ContentWithTargetPath>
  15. </ItemGroup>
  16. <ItemGroup>
  17. <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
  18. <_Parameter1>Ryujinx.Tests</_Parameter1>
  19. </AssemblyAttribute>
  20. </ItemGroup>
  21. </Project>