-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
64 lines (64 loc) · 1.79 KB
/
CMakePresets.json
File metadata and controls
64 lines (64 loc) · 1.79 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
{
"version": 6,
"cmakeMinimumRequired": {
"major": 4,
"minor": 0,
"patch": 0
},
"configurePresets": [
{
"name": "default",
"cacheVariables": {
"CMAKE_INTERPROCEDURAL_OPTIMIZATION": "ON"
},
"hidden": true
},
{
"inherits": "default",
"name": "windows-x64-llvm",
"description": "Windows, x86-64 (LLVM)",
"binaryDir": "build/windows-x64-llvm",
"installDir": "distrib/windows-x64-llvm",
"toolchainFile": "cmake/toolchains/llvm.cmake",
"generator": "Ninja Multi-Config",
"cacheVariables": {
}
},
{
"inherits": "default",
"name": "windows-x64-msvc2022",
"description": "Windows, x86-64 (MSVC 2022)",
"binaryDir": "build/windows-x64-msvc2022",
"installDir": "distrib/windows-x64-msvc2022",
"generator": "Visual Studio 17 2022",
"cacheVariables": {}
}
],
"buildPresets": [
{
"configurePreset": "windows-x64-llvm",
"name": "windows-x64-llvm",
"description": "",
"displayName": "Windows, x64 (LLVM)"
},
{
"configurePreset": "windows-x64-msvc2022",
"name": "windows-x64-msvc2022",
"description": "",
"displayName": "Windows, x64 (MSVC 2022)"
}
],
"workflowPresets": [
{
"name": "windows-x64-llvm",
"description": "",
"displayName": "",
"steps": [
{
"type": "configure",
"name": "windows-x64-llvm"
}
]
}
]
}