-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
43 lines (43 loc) · 989 Bytes
/
CMakePresets.json
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
{
"version": 3,
"configurePresets": [
{
"name": "arm-gnu",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build",
"toolchainFile": "${sourceDir}/cmake/toolchain/stm32h750xx.cmake"
},
{
"name": "desktop",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/cmake-build-desktop"
}
],
"buildPresets": [
{
"name": "firmware-debug",
"configurePreset": "arm-gnu",
"configuration": "Debug"
},
{
"name": "firmware-release",
"configurePreset": "arm-gnu",
"configuration": "Release"
},
{
"name": "firmware-release-with-debug-info",
"configurePreset": "arm-gnu",
"configuration": "RelWithDebInfo"
},
{
"name": "desktop-debug",
"configurePreset": "desktop",
"configuration": "Debug"
},
{
"name": "desktop-release",
"configurePreset": "desktop",
"configuration": "Release"
}
]
}