mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
specify ABI per-debug/release: no x86 for release
This is as it was before I updated my invocation of NDK recently.
This commit is contained in:
parent
674b9dbccf
commit
0904a5299e
1 changed files with 7 additions and 0 deletions
|
@ -223,6 +223,9 @@ android {
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
ndkBuild.arguments += ['BUILD_TARGET=release']
|
ndkBuild.arguments += ['BUILD_TARGET=release']
|
||||||
}
|
}
|
||||||
|
ndk {
|
||||||
|
abiFilters 'armeabi-v7a', 'arm64-v8a'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
debuggable true
|
debuggable true
|
||||||
|
@ -238,6 +241,10 @@ android {
|
||||||
arguments += ['BUILD_TARGET=debug']
|
arguments += ['BUILD_TARGET=debug']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ndk {
|
||||||
|
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue