-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCMakePresets.json
More file actions
40 lines (40 loc) · 887 Bytes
/
Copy pathCMakePresets.json
File metadata and controls
40 lines (40 loc) · 887 Bytes
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
{
"version": 3,
"configurePresets": [
{
"name": "android-base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build-${presetName}",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "$env{ANDROID_NDK_HOME}/build/cmake/android.toolchain.cmake",
"WINDOWSYSTEM": "android",
"ANDROID_PLATFORM": "android-35"
}
},
{
"name": "android-arm64",
"inherits": "android-base",
"cacheVariables": {
"ANDROID_ABI": "arm64-v8a"
}
},
{
"name": "android-x86_64",
"inherits": "android-base",
"cacheVariables": {
"ANDROID_ABI": "x86_64"
}
}
],
"buildPresets": [
{
"name": "android-arm64",
"configurePreset": "android-arm64"
},
{
"name": "android-x86_64",
"configurePreset": "android-x86_64"
}
]
}