-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCMakeAndroidPresets.json
122 lines (122 loc) · 3.12 KB
/
CMakeAndroidPresets.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"version": 4,
"configurePresets": [
{
"name": "android-base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"installDir": "${sourceDir}/out/install/${presetName}",
"toolchainFile": "$env{NDK_ROOT}/build/cmake/android.toolchain.cmake",
"cacheVariables": {
"ANDROID_STL": "c++_shared",
"CMAKE_CXX_STANDARD": "17"
}
},
{
"name": "android-arm-base",
"hidden": true,
"inherits": "android-base",
"cacheVariables": {
"ANDROID_ABI": "armeabi-v7a",
"ANDROID_ARM_NEON": "TRUE",
"ALTERHOOK_TARGET_ARCH": "ARM"
},
"architecture": {
"value": "ARM",
"strategy": "external"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"intelliSenseMode": "android-clang-arm"
}
}
},
{
"name": "android-aarch64-base",
"hidden": true,
"inherits": "android-base",
"cacheVariables": {
"ANDROID_ABI": "arm64-v8a",
"ALTERHOOK_TARGET_ARCH": "AArch64"
},
"architecture": {
"value": "ARM64",
"strategy": "external"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"intelliSenseMode": "android-clang-arm64"
}
}
},
{
"name": "android-arm-debug",
"displayName": "Android ARM Debug",
"inherits": "android-arm-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "android-arm-release",
"displayName": "Android ARM Release",
"inherits": "android-arm-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "android-arm-debug-so",
"displayName": "Android ARM Debug SO",
"inherits": "android-arm-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"ALTERHOOK_SHARED": "ON"
}
},
{
"name": "android-arm-release-so",
"displayName": "Android ARM Release SO",
"inherits": "android-arm-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"ALTERHOOK_SHARED": "ON"
}
},
{
"name": "android-aarch64-debug",
"displayName": "Android AArch64 Debug",
"inherits": "android-aarch64-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "android-aarch64-release",
"displayName": "Android AArch64 Release",
"inherits": "android-aarch64-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "android-aarch64-debug-so",
"displayName": "Android AArch64 Debug SO",
"inherits": "android-aarch64-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"ALTERHOOK_SHARED": "ON"
}
},
{
"name": "android-aarch64-release-so",
"displayName": "Android AArch64 Release SO",
"inherits": "android-aarch64-base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"ALTERHOOK_SHARED": "ON"
}
}
]
}