mirror of https://github.com/ppy/SDL3-CS.git
Merge pull request #128 from smoogipoo/fix-android-tests
Fix android tests
This commit is contained in:
commit
b8b1aa13c6
|
|
@ -1,5 +1,4 @@
|
||||||
using Java.Lang;
|
using Org.Libsdl.App;
|
||||||
using Org.Libsdl.App;
|
|
||||||
|
|
||||||
namespace SDL.Tests.Android
|
namespace SDL.Tests.Android
|
||||||
{
|
{
|
||||||
|
|
@ -8,6 +7,6 @@ namespace SDL.Tests.Android
|
||||||
{
|
{
|
||||||
protected override string[] GetLibraries() => ["SDL3"];
|
protected override string[] GetLibraries() => ["SDL3"];
|
||||||
|
|
||||||
protected override IRunnable CreateSDLMainRunnable() => new Runnable(Program.Main);
|
protected override void Main() => Program.Main();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,4 +16,19 @@
|
||||||
<ProjectReference Include="..\SDL3-CS.Android\SDL3-CS.Android.csproj"/>
|
<ProjectReference Include="..\SDL3-CS.Android\SDL3-CS.Android.csproj"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidNativeLibrary Include="$(MSBuildThisFileDirectory)..\native\android\armeabi-v7a\libSDL3.so">
|
||||||
|
<Abi>armeabi-v7a</Abi>
|
||||||
|
</AndroidNativeLibrary>
|
||||||
|
<AndroidNativeLibrary Include="$(MSBuildThisFileDirectory)..\native\android\arm64-v8a\libSDL3.so">
|
||||||
|
<Abi>arm64-v8a</Abi>
|
||||||
|
</AndroidNativeLibrary>
|
||||||
|
<AndroidNativeLibrary Include="$(MSBuildThisFileDirectory)..\native\android\x86\libSDL3.so">
|
||||||
|
<Abi>x86</Abi>
|
||||||
|
</AndroidNativeLibrary>
|
||||||
|
<AndroidNativeLibrary Include="$(MSBuildThisFileDirectory)..\native\android\x86_64\libSDL3.so">
|
||||||
|
<Abi>x86_64</Abi>
|
||||||
|
</AndroidNativeLibrary>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue