-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
128 lines (128 loc) · 2.81 KB
/
CMakePresets.json
File metadata and controls
128 lines (128 loc) · 2.81 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"version": 2,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "multilib",
"hidden": true,
"cacheVariables": {
"CMAKE_C_FLAGS": "-m32",
"CMAKE_CXX_FLAGS": "-m32"
}
},
{
"name": "Default",
"hidden": true,
"cacheVariables": {
"CMAKE_WARN_DEPRECATED":false,
"CMAKE_POLICY_DEFAULT_CMP0122": "NEW",
"CMAKE_POLICY_DEFAULT_CMP0077": "NEW"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"enableClangTidyCodeAnalysis": true,
"intelliSenseMode": "windows-clang-x64"
}
}
},
{
"name": "Debug",
"inherits":[
"Default"
],
"cacheVariables": {
"CMAKE_BUILD_TYPE":"Debug"
},
"displayName": "Debug Config",
"description": "Debug build using Ninja generator",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/Debug"
},
{
"name": "Release",
"inherits":[
"Default"
],
"cacheVariables": {
"CMAKE_BUILD_TYPE":"Release"
},
"displayName": "Release Config",
"description": "Release build using Ninja generator",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/Release"
},
{
"name": "Release32",
"inherits": [
"Release",
"multilib"
],
"binaryDir": "${sourceDir}/build/Release32"
},
{
"name": "Debug32",
"inherits": [
"Debug",
"multilib"
],
"binaryDir": "${sourceDir}/build/Debug32"
}
],
"buildPresets": [
{
"name": "default",
"hidden": true,
"targets":[
"appimageupdate",
"AppImageUpdateNET",
"AppImageUpdateNET.nupkg"
]
},
{
"name": "Debug",
"inherits": [
"default"
],
"configurePreset": "Debug",
"configuration": "Debug"
},
{
"name": "Release",
"inherits":[
"default"
],
"configurePreset": "Release",
"configuration": "Release"
},
{
"name": "Release32",
"inherits": [
"Release"
],
"configurePreset": "Release32"
},
{
"name": "Debug32",
"inherits": [
"Debug"
],
"configurePreset": "Debug32"
}
],
"testPresets": [
{
"name": "Unit Tests",
"configurePreset": "Debug",
"output": {
"outputOnFailure": true
},
"execution": {
"stopOnFailure": true
}
}
]
}