-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeSettings.json
44 lines (44 loc) · 1.53 KB
/
CMakeSettings.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
44
{
"configurations": [
{
"name": "Teensy-Release",
"generator": "Unix Makefiles",
"configurationType": "Release",
"buildRoot": "${projectDir}\\build\\${name}",
"installRoot": "${projectDir}\\install\\${name}",
"cmakeCommandArgs": "-DTOOLCHAIN_PREFIX=\"c:/Program Files (x86)/GNU Tools Arm Embedded/9 2019-q4-major\"",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"cmakeToolchain": "${projectDir}\\\\submodules\\\\cmake-arm-embedded\\\\toolchain-arm-none-eabi.cmake",
"inheritEnvironments": [ "gcc-arm" ],
"variables": [
{
"name": "CMAKE_MAKE_PROGRAM",
"value": "C:/MinGW/bin/mingw32-make.exe",
"type": "FILEPATH"
}
],
"intelliSenseMode": "linux-gcc-arm"
},
{
"name": "Teensy-Debug",
"generator": "Unix Makefiles",
"configurationType": "Debug",
"buildRoot": "${projectDir}\\build\\${name}",
"installRoot": "${projectDir}\\install\\${name}",
"cmakeCommandArgs": "-DTOOLCHAIN_PREFIX=\"c:/Program Files (x86)/GNU Tools Arm Embedded/9 2019-q4-major\"",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"cmakeToolchain": "${projectDir}\\\\submodules\\\\cmake-arm-embedded\\\\toolchain-arm-none-eabi.cmake",
"inheritEnvironments": [ "gcc-arm" ],
"variables": [
{
"name": "CMAKE_MAKE_PROGRAM",
"value": "C:/MinGW/bin/mingw32-make.exe",
"type": "FILEPATH"
}
],
"intelliSenseMode": "linux-gcc-arm"
}
]
}