forked from f1xpl/aasdk
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCMakePresets.json
More file actions
149 lines (149 loc) · 4.82 KB
/
Copy pathCMakePresets.json
File metadata and controls
149 lines (149 loc) · 4.82 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"version": 3,
"configurePresets": [
{
"name": "debug",
"displayName": "Debug Build",
"description": "Debug build with full debug information",
"binaryDir": "${sourceDir}/build-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"TARGET_ARCH": "amd64"
}
},
{
"name": "release",
"displayName": "Release Build",
"description": "Optimized release build",
"binaryDir": "${sourceDir}/build-release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"TARGET_ARCH": "amd64"
}
},
{
"name": "debug-x64",
"displayName": "Debug Build (x64)",
"description": "Debug build for x64 architecture",
"binaryDir": "${sourceDir}/build-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"TARGET_ARCH": "amd64"
}
},
{
"name": "release-x64",
"displayName": "Release Build (x64)",
"description": "Release build for x64 architecture",
"binaryDir": "${sourceDir}/build-release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"TARGET_ARCH": "amd64"
}
},
{
"name": "debug-arm64",
"displayName": "Debug Build (ARM64)",
"description": "Debug build for ARM64 architecture",
"binaryDir": "${sourceDir}/build-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"TARGET_ARCH": "arm64"
}
},
{
"name": "release-arm64",
"displayName": "Release Build (ARM64)",
"description": "Release build for ARM64 architecture",
"binaryDir": "${sourceDir}/build-release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"TARGET_ARCH": "arm64"
}
},
{
"name": "debug-armhf",
"displayName": "Debug Build (ARMHF)",
"description": "Debug build for ARMHF architecture",
"binaryDir": "${sourceDir}/build-debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"TARGET_ARCH": "armhf"
}
},
{
"name": "release-armhf",
"displayName": "Release Build (ARMHF)",
"description": "Release build for ARMHF architecture",
"binaryDir": "${sourceDir}/build-release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"TARGET_ARCH": "armhf"
}
}
],
"buildPresets": [
{
"name": "debug",
"configurePreset": "debug",
"displayName": "Build Debug",
"description": "Build the debug configuration"
},
{
"name": "release",
"configurePreset": "release",
"displayName": "Build Release",
"description": "Build the release configuration"
},
{
"name": "debug-x64",
"configurePreset": "debug-x64",
"displayName": "Build Debug (x64)",
"description": "Build debug for x64"
},
{
"name": "release-x64",
"configurePreset": "release-x64",
"displayName": "Build Release (x64)",
"description": "Build release for x64"
},
{
"name": "debug-arm64",
"configurePreset": "debug-arm64",
"displayName": "Build Debug (ARM64)",
"description": "Build debug for ARM64"
},
{
"name": "release-arm64",
"configurePreset": "release-arm64",
"displayName": "Build Release (ARM64)",
"description": "Build release for ARM64"
},
{
"name": "debug-armhf",
"configurePreset": "debug-armhf",
"displayName": "Build Debug (ARMHF)",
"description": "Build debug for ARMHF"
},
{
"name": "release-armhf",
"configurePreset": "release-armhf",
"displayName": "Build Release (ARMHF)",
"description": "Build release for ARMHF"
}
],
"testPresets": [
{
"name": "debug",
"configurePreset": "debug",
"displayName": "Test Debug",
"description": "Run tests for debug build"
},
{
"name": "release",
"configurePreset": "release",
"displayName": "Test Release",
"description": "Run tests for release build"
}
]
}