forked from SanderMertens/flecs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
39 lines (35 loc) · 1.15 KB
/
CMakePresets.json
File metadata and controls
39 lines (35 loc) · 1.15 KB
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
{
"version": 5,
"cmakeMinimumRequired": {
"major": 3,
"minor": 10,
"patch": 0
},
"configurePresets": [
{
"name": "Android",
"displayName": "Android",
"description": "Build android",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"_comment": "download the ndk and change the cache variables as your circumstances ",
"CMAKE_TOOLCHAIN_FILE": "C:/Program Files/AndroidDev/android-ndk-r27c/build/cmake/android.toolchain.cmake",
"CMAKE_BUILD_TYPE": "Release",
"ANDROID_PLATFORM": "31",
"ANDROID_ABI": "arm64-v8a",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"FLECS_STATIC": "OFF",
"FLECS_SHARED": "ON",
"FLECS_PIC": "ON",
"FLECS_TESTS": "OFF"
}
}
],
"buildPresets": [
{
"name": "Android",
"configurePreset": "Android"
}
]
}