aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/Android/ndk/utils.js
blob: 39cdeeae1102c7da641f72e5f5730b66e874c42f (plain)
1
2
3
4
5
6
7
8
function abiNameToDirName(abiName)
{
    if (abiName.startsWith("armeabi"))
        return "arm";
    if (abiName.startsWith("arm64"))
        return "arm64";
    return abiName;
}