-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCMakePresets.json
More file actions
81 lines (81 loc) · 2.14 KB
/
CMakePresets.json
File metadata and controls
81 lines (81 loc) · 2.14 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
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
{
"version": 3,
"configurePresets": [
{
"name": "Default-Windows",
"hidden": true,
"generator": "Visual Studio 17 2022",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "Default-Linux",
"hidden": true,
"generator": "Ninja",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
},
"cacheVariables": {
"CMAKE_C_COMPILER": "/usr/bin/clang",
"CMAKE_CXX_COMPILER": "/usr/bin/clang++"
}
},
{
"name": "Default-Debug",
"hidden": true,
"binaryDir": "${sourceDir}/build/Debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "Default-Release",
"hidden": true,
"binaryDir": "${sourceDir}/build/Release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "Debug-Windows",
"hidden": false,
"inherits": [
"Default-Windows",
"Default-Debug"
],
"displayName": "Debug Windows"
},
{
"name": "Debug-Linux",
"hidden": false,
"inherits": [
"Default-Linux",
"Default-Debug"
],
"displayName": "Debug Linux"
},
{
"name": "Release-Windows",
"hidden": false,
"inherits": [
"Default-Windows",
"Default-Release"
],
"displayName": "Release Windows"
},
{
"name": "Release-Linux",
"hidden": false,
"inherits": [
"Default-Linux",
"Default-Release"
],
"displayName": "Release Linux"
}
]
}