6499597586
* vscode: initial development configuration; fbt: `vscode_dist` target for deploying vscode config * vscode: fixed fbt blackmagic command Co-authored-by: あく <alleteam@gmail.com>
32 lines
1.2 KiB
JSON
32 lines
1.2 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Win32",
|
|
"compilerPath": "${workspaceFolder}/toolchain/i686-windows/bin/arm-none-eabi-gcc.exe",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compileCommands": "${workspaceFolder}/build/latest/compile_commands.json",
|
|
"configurationProvider": "ms-vscode.cpptools",
|
|
"cStandard": "gnu17",
|
|
"cppStandard": "c++17"
|
|
},
|
|
{
|
|
"name": "Linux",
|
|
"compilerPath": "${workspaceFolder}/toolchain/x86_64-linux/bin/arm-none-eabi-gcc",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compileCommands": "${workspaceFolder}/build/latest/compile_commands.json",
|
|
"configurationProvider": "ms-vscode.cpptools",
|
|
"cStandard": "gnu17",
|
|
"cppStandard": "c++17"
|
|
},
|
|
{
|
|
"name": "Mac",
|
|
"compilerPath": "${workspaceFolder}/toolchain/x86_64-darwin/bin/arm-none-eabi-gcc",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compileCommands": "${workspaceFolder}/build/latest/compile_commands.json",
|
|
"configurationProvider": "ms-vscode.cpptools",
|
|
"cStandard": "gnu17",
|
|
"cppStandard": "c++17"
|
|
}
|
|
],
|
|
"version": 4
|
|
} |