mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2026-03-04 07:24:16 +01:00
* Update extensions.json * vscode: fixed extensions config for clangd; updated paths for current toolchain location convention --------- Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su>
29 lines
1.0 KiB
JSON
29 lines
1.0 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Win32",
|
|
"compilerPath": "${workspaceFolder}/toolchain/current/bin/arm-none-eabi-gcc.exe",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compileCommands": "${workspaceFolder}/build/latest/compile_commands.json",
|
|
"cStandard": "gnu23",
|
|
"cppStandard": "c++20"
|
|
},
|
|
{
|
|
"name": "Linux",
|
|
"compilerPath": "${workspaceFolder}/toolchain/current/bin/arm-none-eabi-gcc",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compileCommands": "${workspaceFolder}/build/latest/compile_commands.json",
|
|
"cStandard": "gnu23",
|
|
"cppStandard": "c++20"
|
|
},
|
|
{
|
|
"name": "Mac",
|
|
"compilerPath": "${workspaceFolder}/toolchain/current/bin/arm-none-eabi-gcc",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compileCommands": "${workspaceFolder}/build/latest/compile_commands.json",
|
|
"cStandard": "gnu23",
|
|
"cppStandard": "c++20"
|
|
}
|
|
],
|
|
"version": 4
|
|
} |