-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
48 lines (48 loc) · 1.32 KB
/
CMakePresets.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"version": 5,
"cmakeMinimumRequired": {
"major": 3,
"minor": 27,
"patch": 0
},
"configurePresets": [
{
"hidden": true,
"name": "Config-Base",
"binaryDir": "${sourceDir}/Build",
"environment": {
"LEASI_CMAKE_PRESET": "${presetName}"
}
},
{
"name": "VisualStudio",
"inherits": "Config-Base",
"displayName": "Win64 / Visual Studio",
"description": "Visual Studio targeting Windows x86-64",
"generator": "Visual Studio 18 2026",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_CONFIGURATION_TYPES": "DEBUG;RELEASE",
"LEASI_BUILD_LE1": true,
"LEASI_BUILD_LE2": true,
"LEASI_BUILD_LE3": true
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
}
],
"buildPresets": [
{
"name": "VisualStudio",
"configurePreset": "VisualStudio",
"displayName": "Win64 / Visual Studio"
}
],
"testPresets": []
}