-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeUserPresets.json.template
59 lines (59 loc) · 1.54 KB
/
CMakeUserPresets.json.template
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
{
"version": 3,
"configurePresets": [
{
"name": "linux",
"hidden": true,
"inherits": [ "tests", "examples" ],
"vendor": {
"microsoft.com/VisualStudioRemoteSettings/CMake/1.0": {
"sourceDir": !this is intentionally invalid! put here the path to sources inside linux,
"copySources": false
}
}
},
{
"name": "gcc-release-linux",
"displayName": "gcc Release",
"inherits": [ "linux-gcc", "linux", "relwithdebinfo" ]
},
{
"name": "clang-release-linux",
"displayName": "clang Release",
"inherits": [ "linux-clang", "linux", "relwithdebinfo" ]
},
{
"name": "clang-release-linux-libc++",
"displayName": "clang Release libc++",
"inherits": [ "linux-clang-libc++", "linux", "relwithdebinfo" ]
},
{
"name": "msvc-x64",
"hidden": true,
"inherits": [ "tests", "examples" ],
"architecture": {
"value": "x64",
"strategy": "external"
},
"toolset": {
"value": "host=x64",
"strategy": "external"
}
},
{
"name": "x64-release",
"displayName": "x64 Release",
"inherits": [ "msvc", "msvc-x64", "relwithdebinfo" ]
},
{
"name": "clang-cl-x64-release",
"displayName": "clang-cl x64 Release",
"inherits": [ "msvc-clang-cl", "msvc-x64", "relwithdebinfo" ]
},
{
"name": "clang-x64-release",
"displayName": "clang x64 Release",
"inherits": [ "msvc-clang", "msvc-x64", "relwithdebinfo" ]
}
]
}