-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakePresets.json
77 lines (77 loc) · 2.07 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
{
"version": 3,
"configurePresets": [
{
"name": "ninja",
"generator": "Ninja",
"hidden": true,
"binaryDir": "build"
},
{
"name": "ninja-debug",
"displayName": "Ninja (Debug)",
"inherits": "ninja",
"hidden": false,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "ninja-release",
"displayName": "Ninja (Release)",
"inherits": "ninja",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "MSVC-19",
"displayName": "MSVC 19",
"generator": "Visual Studio 16 2019",
"binaryDir": "build",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
}
],
"buildPresets": [
{
"name": "msvc-debug",
"configurePreset": "MSVC-19",
"configuration": "Debug"
},
{
"name": "msvc-release",
"configurePreset": "MSVC-19",
"configuration": "Release"
}
],
"testPresets": [
{
"name": "unit-tests-debug",
"displayName": "Unit Tests (Debug)",
"configurePreset": "MSVC-19",
"configuration": "Debug",
"inheritConfigureEnvironment": true,
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "unit-tests-release",
"displayName": "Unit Tests (Release)",
"configurePreset": "MSVC-19",
"configuration": "Release",
"inheritConfigureEnvironment": true,
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
}
]
}