Skip to content

Commit

Permalink
Merge pull request #5962 from frenzibyte/update-workarounds-file
Browse files Browse the repository at this point in the history
Update workarounds file to fix iOS AOT build issues via command line
  • Loading branch information
peppy authored Aug 11, 2023
2 parents 447c54b + b7c3165 commit 04dfe11
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion osu.Framework.iOS/osu.Framework.iOS.Workarounds.targets
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
<ItemGroup>
<StubFiles Include="$(MSBuildThisFileDirectory)..\stubs\*" />
</ItemGroup>
<Copy SourceFiles="@(StubFiles)" DestinationFolder="obj\$(Platform)\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\linked\" />
<Copy Condition="'$(Platform)' == 'AnyCPU'" SourceFiles="@(StubFiles)" DestinationFolder="obj\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\linked\" />
<Copy Condition="'$(Platform)' != 'AnyCPU'" SourceFiles="@(StubFiles)" DestinationFolder="obj\$(Platform)\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\linked\" />
</Target>
<!-- OpenTabletDriver contains P/Invokes to the "Quartz" framework for native macOS code.
This leads iOS linker into attempting to include that framework, despite not existing on such platform.
Expand Down

0 comments on commit 04dfe11

Please sign in to comment.