-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
88 lines (86 loc) · 2.74 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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 27,
"patch": 0
},
"configurePresets": [
{
"name": "base_unix_makefiles",
"hidden": true,
"generator": "Unix Makefiles",
"description": "Base Debug build using Unix Makefiles generator",
"binaryDir": "${sourceDir}/build/${presetName}",
"installDir": "${sourceDir}/install/${presetName}",
"toolchainFile": "${sourceDir}/CMake/Toolchain/${presetName}.cmake",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_COLOR_MAKEFILE": true,
"CMAKE_VERBOSE_MAKEFILE": true,
"CMAKE_LINK_WHAT_YOU_USE": true,
"CMAKE_EXPORT_COMPILE_COMMANDS": true
}
},
{
"name": "qcc12_qnx800_aarch64_release",
"inherits": "base_unix_makefiles",
"description": "Release build using QCC-12 for QNX 8.0 aarch64",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_PREFIX_PATH": "$env{QNX_HOST}/usr"
}
},
{
"name": "qcc12_qnx800_aarch64_debug",
"inherits": "base_unix_makefiles",
"description": "Debug build using QCC-12 for QNX 8.0 aarch64",
"cacheVariables": {
"CMAKE_PREFIX_PATH": "$env{QNX_HOST}/usr"
}
},
{
"name": "qcc12_qnx800_x86_64_release",
"inherits": "base_unix_makefiles",
"description": "Release build using QCC-12 for QNX 8.0 aarch64",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_PREFIX_PATH": "$env{QNX_HOST}/usr"
}
},
{
"name": "qcc12_qnx800_x86_64_debug",
"inherits": "base_unix_makefiles",
"description": "Debug build using QCC-12 for QNX 8.0 aarch64",
"cacheVariables": {
"CMAKE_PREFIX_PATH": "$env{QNX_HOST}/usr"
}
},
{
"name": "gcc11_linux_x86_64_release",
"inherits": "base_unix_makefiles",
"description": "Releasue build using gcc11 for Linux x86_64",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "gcc11_linux_x86_64_debug",
"inherits": "base_unix_makefiles",
"description": "Debug build using gcc11 for Linux x86_64"
},
{
"name": "gcc11_linux_aarch64_release",
"inherits": "base_unix_makefiles",
"description": "Releasue build using gcc11 for Linux aarch64",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "gcc11_linux_aarch64_debug",
"inherits": "base_unix_makefiles",
"description": "Debug build using gcc11 for Linux aarch64"
}
]
}