mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2026-03-21 23:57:03 +01:00
* FBT/uFBT: ms-vscode.cpptools can't be a configuration provider to itself * FBT/uFBT: Enable C++20/C23 in IntelliSense as the compilation options do
29 lines
1.1 KiB
JSON
29 lines
1.1 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Win32",
|
|
"compilerPath": "${workspaceFolder}/toolchain/x86_64-windows/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/x86_64-linux/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/x86_64-darwin/bin/arm-none-eabi-gcc",
|
|
"intelliSenseMode": "gcc-arm",
|
|
"compileCommands": "${workspaceFolder}/build/latest/compile_commands.json",
|
|
"cStandard": "gnu23",
|
|
"cppStandard": "c++20"
|
|
}
|
|
],
|
|
"version": 4
|
|
} |