forked from Monstatek/M1
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakePresets.json
More file actions
34 lines (34 loc) · 1.21 KB
/
Copy pathCMakePresets.json
File metadata and controls
34 lines (34 loc) · 1.21 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
{
"version": 8,
"configurePresets": [
{
"name": "gcc-14_2",
"hidden": true,
"displayName": "GCC 14.2.1 arm-none-eabi",
"description": "Using compilers 14.2 rel1",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_C_COMPILER": "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.2 rel1/bin/arm-none-eabi-gcc.exe",
"CMAKE_CXX_COMPILER": "C:/Program Files (x86)/Arm GNU Toolchain arm-none-eabi/14.2 rel1/bin/arm-none-eabi-g++.exe",
"CMAKE_MESSAGE_CONTEXT_SHOW": true,
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"name": "gcc-14_2_build-debug",
"inherits": "gcc-14_2",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "gcc-14_2_build-release",
"inherits": "gcc-14_2",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
]
}