-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakePresets.json
More file actions
126 lines (126 loc) · 3.19 KB
/
Copy pathCMakePresets.json
File metadata and controls
126 lines (126 loc) · 3.19 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
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
{
"version": 6,
"configurePresets": [
{
"name": "default",
"displayName": "Default Configure Preset",
"hidden": true,
"binaryDir": "${sourceDir}/build/",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"BUILD_STDEXEC": "ON",
"BUILD_TBB": "ON",
"BUILD_EXAMPLES": "ON",
"BUILD_PERF": "ON",
"BUILD_CUDA": "OFF"
}
},
{
"name": "20",
"displayName": "Configure preset constrained to C++20",
"inherits": [
"default"
],
"cacheVariables": {
"CMAKE_CXX_STANDARD": "20",
"BUILD_BEMAN_TASK": "OFF"
}
},
{
"name": "20-cuda",
"displayName": "Configure preset constrained to C++20 with CUDA support",
"inherits": [
"20"
],
"cacheVariables": {
"BUILD_CUDA": "ON"
}
},
{
"name": "23",
"displayName": "Configure preset constrained to C++23",
"inherits": [
"default"
],
"cacheVariables": {
"CMAKE_CXX_STANDARD": "23",
"BUILD_BEMAN_TASK": "ON"
}
}
],
"buildPresets": [
{
"name": "default",
"displayName": "Default Build Preset",
"hidden": true,
"configurePreset": "default",
"jobs": 0
},
{
"name": "20",
"displayName": "Build with C++20",
"configurePreset": "20",
"inherits": [
"default"
]
},
{
"name": "20-cuda",
"displayName": "Build with C++20 and CUDA support",
"configurePreset": "20-cuda",
"inherits": [
"20"
]
},
{
"name": "23",
"displayName": "Build with C++23",
"configurePreset": "23",
"inherits": [
"default"
]
}
],
"workflowPresets": [
{
"name": "20",
"steps": [
{
"type": "configure",
"name": "20"
},
{
"type": "build",
"name": "20"
}
]
},
{
"name": "20-cuda",
"steps": [
{
"type": "configure",
"name": "20-cuda"
},
{
"type": "build",
"name": "20-cuda"
}
]
},
{
"name": "23",
"steps": [
{
"type": "configure",
"name": "23"
},
{
"type": "build",
"name": "23"
}
]
}
]
}