ARMeilleure.csproj 637 B

12345678910111213141516171819
  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. </Project>