-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakePresets.json
96 lines (96 loc) · 2.09 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
89
90
91
92
93
94
95
96
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "default",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build/${presetName}",
"hidden": true
},
{
"name": "vcpkg",
"inherits": "default",
"hidden": true,
"toolchainFile": "${sourceDir}/cmake/vcpkg/vcpkg.cmake",
"environment": {
"VCPKG_OVERLAY_TRIPLETS": "./cmake/vcpkg/triplets/"
}
},
{
"name": "vcpkg-gcc",
"inherits": "vcpkg",
"displayName": "Ninja Multi-Config",
"environment": {
"CXX": "g++$env{COMPILER_VERSION}",
"CC": "gcc$env{COMPILER_VERSION}"
}
},
{
"name": "vcpkg-clang",
"inherits": "vcpkg",
"displayName": "Ninja Multi-Config",
"environment": {
"CXX": "clang++$env{COMPILER_VERSION}",
"CC": "clang$env{COMPILER_VERSION}"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-linux-clang-libcxx"
}
},
{
"name": "vcpkg-msvc",
"inherits": "vcpkg",
"displayName": "Ninja Multi-Config",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-windows"
}
}
],
"buildPresets": [
{
"name": "vcpkg-gcc",
"configurePreset": "vcpkg-gcc"
},
{
"name": "vcpkg-clang",
"configurePreset": "vcpkg-clang"
},
{
"name": "vcpkg-msvc",
"configurePreset": "vcpkg-msvc"
}
],
"testPresets": [
{
"name": "default",
"hidden": true,
"output": {"outputOnFailure": true},
"execution": {"noTestsAction": "error"}
},
{
"name": "vcpkg-gcc",
"configurePreset": "vcpkg-gcc",
"inherits": "default"
},
{
"name": "vcpkg-clang",
"configurePreset": "vcpkg-clang",
"inherits": "default"
},
{
"name": "vcpkg-msvc",
"configurePreset": "vcpkg-msvc",
"inherits": "default"
}
]
}