blob: 48deb6fc0f0e70a9c8d7f8a775e83c46aaebf116 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (C) 2025 Intel Corporation.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QString>
inline QString androidAbi()
{
#if defined(__aarch64__)
return "arm64-v8a";
#elif defined(__arm__)
return "armeabi-v7a";
#elif defined(__i386__)
return "x86";
#elif defined(__x86_64__)
return "x86_64";
#endif
}
|