build: only enable adrenotools on arm64

This commit is contained in:
Liam
2023-03-16 11:56:51 -04:00
committed by bunnei
parent 515f3deea1
commit 616cf70a80
9 changed files with 33 additions and 15 deletions

View File

@ -10,7 +10,6 @@ plugins {
*/
def autoVersion = (int) (((new Date().getTime() / 1000) - 1451606400) / 10)
def buildType
def abiFilter = "arm64-v8a" //, "x86"
android {
namespace 'org.yuzu.yuzu_emu'
@ -44,7 +43,7 @@ android {
targetSdkVersion 33
versionCode autoVersion
versionName getVersion()
ndk.abiFilters abiFilter
ndk.abiFilters "arm64-v8a", "x86_64"
}
signingConfigs {
@ -115,7 +114,7 @@ android {
"-DYUZU_USE_BUNDLED_VCPKG=ON",
"-DYUZU_USE_BUNDLED_FFMPEG=ON"
abiFilters abiFilter
abiFilters "arm64-v8a", "x86_64"
}
}
}