ARMeilleure.csproj 824 B

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