-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCMakePresets.json
56 lines (56 loc) · 1.35 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
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "build-ninja",
"hidden": true,
"generator": "Ninja"
},
{
"name": "type-debug",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "arch-x86_64",
"hidden": true,
"cacheVariables": {
"MOS_ARCH": "x86_64"
}
},
{
"name": "arch-riscv64",
"hidden": true,
"cacheVariables": {
"MOS_ARCH": "riscv64"
}
},
{
"name": "x86_64-debug-ninja",
"inherits": [
"build-ninja",
"type-debug",
"arch-x86_64"
],
"displayName": "x86_64 Debug using Ninja",
"binaryDir": "${sourceDir}/build/x86_64"
},
{
"name": "riscv64-debug-ninja",
"inherits": [
"build-ninja",
"type-debug",
"arch-riscv64"
],
"displayName": "riscv64 Debug using Ninja",
"binaryDir": "${sourceDir}/build/riscv64"
}
]
}