-
Notifications
You must be signed in to change notification settings - Fork 6
/
CMakePresets.json
133 lines (133 loc) · 4.13 KB
/
CMakePresets.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
123
124
125
126
127
128
129
130
131
132
133
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"cacheVariables": {
"BUNGEE_SELF_TEST": "0",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"name": "windows-x86_64",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_SYSTEM_NAME": "Windows",
"CMAKE_C_COMPILER": "x86_64-w64-mingw32-gcc",
"CMAKE_CXX_COMPILER": "x86_64-w64-mingw32-g++",
"CMAKE_FIND_ROOT_PATH_MODE_PROGRAM": "NEVER",
"CMAKE_FIND_ROOT_PATH_MODE_INCLUDE": "ONLY",
"CMAKE_EXE_LINKER_FLAGS": "-static-libgcc -static-libstdc++ -static ",
"CMAKE_SHARED_LINKER_FLAGS": "-static-libgcc -static-libstdc++ -static",
"CMAKE_SHARED_LIBRARY_PREFIX_CXX": "",
"CMAKE_IMPORT_LIBRARY_PREFIX_CXX": "",
"CMAKE_IMPORT_LIBRARY_SUFFIX_CXX": ".lib"
}
},
{
"name": "linux-x86_64",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "android",
"hidden": true,
"inherits": "base",
"toolchainFile": "$env{ANDROID_NDK}/build/cmake/android.toolchain.cmake",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"ANDROID_TOOLCHAIN": "clang",
"ANDROID_STL": "c++_shared",
"BUILD_SHARED_LIBS": "false"
}
},
{
"name": "android-armeabi-v7a",
"inherits": "android",
"cacheVariables": {
"ANDROID_ABI": "armeabi-v7a",
"ANDROID_PLATFORM": "android-16"
}
},
{
"name": "android-arm64-v8a",
"inherits": "android",
"cacheVariables": {
"ANDROID_ABI": "arm64-v8a",
"ANDROID_PLATFORM": "android-21"
}
},
{
"name": "android-x86",
"inherits": "android",
"cacheVariables": {
"ANDROID_ABI": "x86",
"ANDROID_PLATFORM": "android-16"
}
},
{
"name": "android-x86_64",
"inherits": "android",
"cacheVariables": {
"ANDROID_ABI": "x86_64",
"ANDROID_PLATFORM": "android-21"
}
},
{
"name": "apple",
"hidden": true,
"inherits": "base",
"generator": "Xcode",
"toolchainFile": "${sourceDir}/submodules/ios-cmake/ios.toolchain.cmake",
"cacheVariables": {
"CMAKE_CONFIGURATION_TYPES": "Release",
"NAMED_LANGUAGE_SUPPORT": "ON",
"ENABLE_BITCODE": "OFF",
"ENABLE_ARC": "ON",
"ENABLE_VISIBILITY": "OFF",
"ENABLE_STRICT_TRY_COMPILE": "OFF"
}
},
{
"name": "apple-mac",
"inherits": "apple",
"cacheVariables": {
"PLATFORM": "MAC_UNIVERSAL"
}
},
{
"name": "apple-ios",
"hidden": true,
"inherits": "apple",
"cacheVariables": {
"DEPLOYMENT_TARGET": "12.0",
"CMAKE_XCODE_ATTRIBUTE_PRODUCT_BUNDLE_IDENTIFIER": "com.parabolaresearch.bungee",
"CMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED": "NO"
}
},
{
"name": "apple-ios-arm64",
"inherits": "apple-ios",
"cacheVariables": {
"PLATFORM": "OS64"
}
},
{
"name": "apple-ios-x86_64",
"inherits": "apple-ios",
"cacheVariables": {
"PLATFORM": "SIMULATOR64"
}
}
]
}